remove method

  1. @override
Future<bool> remove(
  1. String key
)
override

Removes the value associated with the key.

Implementation

@override
Future<bool> remove(String key) async {
  return (await _kChannel.invokeMethod<bool>(
    'remove',
    <String, dynamic>{'key': key},
  ))!;
}