remove static method

Future<bool> remove(
  1. String key
)

删除本地数据

Implementation

static Future<bool> remove(String key) async {
  _checkInit();
  return _prefs.remove(key);
}