clear method

Future<void> clear()

Implementation

Future<void> clear() async {
  final prefs = await asyncPrefs;
  await prefs.clear();
}