deleteMessageByUUID method
delete the message with the specified uuid
Implementation
Future<void> deleteMessageByUUID(String uuid) async {
await _database.delete(LocalityEvent.tableName,
where: '${LocalityEvent.columnUuid} = ?', whereArgs: [uuid]);
}