remove static method

Future<void> remove(
  1. String key
)

Clear data from the local cache 删除缓存

Implementation

static Future<void> remove(String key) {
  return _preferences.remove(key);
}