shouldShow method

  1. @override
Future<bool> shouldShow()
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);
}