writeBool static method

dynamic writeBool(
  1. String key,
  2. bool data
)

Implementation

static writeBool(String key, bool data) async {
  final pref = await SharedPreferences.getInstance();
  pref.setBool(key, data);
}