remove static method

Future remove(
  1. String key
)

Removes an entry from persistent storage under the specified specified content provider.

Implementation

static Future<dynamic> remove(String key) {
  return _channel.invokeMethod('remove', {'key': key});
}