remove static method

Future<bool> remove({
  1. required String key,
})

Implementation

static Future<bool> remove({required String key}) async {
  if (_prefs == null) await init();
  return await _prefs!.remove(key);
}