setBool method

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

Saves a boolean value to persistent storage in the background.

Implementation

// ignore: avoid_positional_boolean_parameters
Future<bool> setBool(String key, bool value) {
  throw UnimplementedError("this method isn't supported in this module.");
}