clear static method

Future<bool> clear()

Completes with true once the user preferences for the app has been cleared.

Implementation

static Future<bool> clear() async {
  final prefs = await instance;
  return prefs.clear();
}