getAllMessages method
Get all messages from database and decrypts with the given password.
Implementation
Future<List<LocalityEvent>> getAllMessages({String? password}) async {
return _getMessages(null, null, password: password);
}
Get all messages from database and decrypts with the given password.
Future<List<LocalityEvent>> getAllMessages({String? password}) async {
return _getMessages(null, null, password: password);
}