remove method
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,'suiteName':this._suiteName},
))!;
}