putBool static method

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

Saves a boolean value to persistent storage under the specified content provider.

Implementation

static Future<dynamic> putBool(String key, bool value) {
  return _setValue('Bool', key, value);
}