getIntroFlag static method

Future<bool> getIntroFlag()

Implementation

static Future<bool> getIntroFlag() async {
  SharedPreferences preferences = await SharedPreferences.getInstance();
  return preferences.getBool("intro") ?? false;
}