setBool method

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

Saves a boolean value to persistent storage in the background.

Implementation

@override
Future<bool> setBool(String key, bool value) => update(key, value);