putBool method

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

Implementation

Future<void> putBool(String key, bool value) async {
  _map[key] = value;
  await save();
}