readBoolean method

Future<bool> readBoolean(
  1. String key
)

Implementation

Future<bool> readBoolean(String key) async {
  SharedPreferences mStorage = await getStorage();
  return mStorage.getBool(key) ?? false;
}