remove static method

Future<void> remove(
  1. String key
)

删除数据

Implementation

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