putBool static method

dynamic putBool(
  1. String key,
  2. bool value
)

Implementation

static putBool(String key, bool value) {
  if (_prefs != null) _prefs!.setBool(key, value);
}