getAllMessagesByEventAndChannelSince method
Implementation
Future<List<LocalityEvent>> getAllMessagesByEventAndChannelSince(
String event, String channel, int sinceTimestamp,
{String? password}) async {
return _getMessages(
'${LocalityEvent.columnEvent} = ? AND ${LocalityEvent.columnChannel} = ? AND ${LocalityEvent.columnTimestamp} >= ?',
[event, channel, sinceTimestamp],
password: password,
);
}