clear static method

Future<bool> clear()

Clears all values from storage.

Implementation

static Future<bool> clear() async {
  return await _prefs?.clear() ?? false;
}