setPrefBoolean static method

void setPrefBoolean(
  1. String key,
  2. bool value
)

Implementation

static void setPrefBoolean(String key, bool value) {
  prefs!.setBool(key, value);
}