remove method
Removes the record for key, if present.
Implementation
@override
Future<void> remove(String key) => _synchronized(() async {
final raw = await _readRaw();
if (raw.remove(key) != null) {
await _writeRaw(raw);
}
});