setSharedPrefsBool static method

Future<bool> setSharedPrefsBool(
  1. String key,
  2. bool value
)

Implementation

static Future<bool> setSharedPrefsBool(String key, bool value) async {
  return isWeb || isWindows
      ? SharedPreferencesUtil.instance
          .setValue("Bool", _checkPrefix(key), value)
      : SharedPreferencesUtil.instance.setBool(key, value);
}