getBoolOr static method

bool getBoolOr(
  1. String key,
  2. bool def
)

Implementation

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