saveBool method

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

Implementation

Future<bool?> saveBool(String key, bool value) async {
  return await _save<bool>(key, value, _saveBool);
}