remove static method

Future<void> remove(
  1. String key
)

Removes an entry from persistent storage under the specified app group.

Implementation

static Future<void> remove(String key) async {
  await _channel.invokeMethod('remove', {'key': key});
}