remove static method

Future<void> remove(
  1. String key
)

REMOVE KEY

Implementation

static Future<void> remove(String key) async {
  await _prefs?.remove(key);
}