deleteKey static method

Future<void> deleteKey(
  1. String key
)

Implementation

static Future<void> deleteKey(String key) async {
  final SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.remove(key);
}