write method
Implementation
@override
Future<bool> write(WriteData data) async {
if (data.map[data.updatedKey] == null) {
data.map.remove(data.updatedKey);
}
await _manager.write(data.map);
_keyListener.add(data.updatedKey);
return true;
}