clear static method

Future<bool>? clear()

clear.

Implementation

static Future<bool>? clear() {
  if (_prefs == null) return null;
  return _prefs?.clear();
}