getAllMessagesByChannel method
Retrieves all messages for the specified channel
from the repository.
Implementation
Future<List<LocalityEvent>> getAllMessagesByChannel(String channel) async {
return await messageRepository.getAllMessagesByChannel(channel);
}