shouldShow method
override
Checks if the introduction should be shown.
Returns true if the introduction should be shown;
otherwise, returns false.
Implementation
@override
Future<bool> shouldShow() async {
await _init();
return !(_prefs!.getBool(key) ?? false);
}