getBoolOrNull static method

bool? getBoolOrNull(
  1. String key
)

return bool by key if exist return True else false

Implementation

static bool? getBoolOrNull(
  String key,
) =>
    _prefs.getBool(key);