addDrop method
Implementation
OutgoingMessage? addDrop(String rootKey, int timestamp) {
if (_data[timestamp] != null) return null;
if (_sent.contains(timestamp)) return null;
_data[timestamp] = OutgoingMessage(
3, '', '', '', rootKey, '', timestamp, Uint8List(0), '', '', '', '', 0);
return _data[timestamp];
}