remove static method

Future<void> remove(
  1. String key
)

Implementation

static Future<void> remove(String key) async {
  try {
    if (_pref == null) await _init();
    _pref!.remove(key);
  } catch (e) {
    logs(e);
  }
}