getChannelFetchTime method

Future<int> getChannelFetchTime(
  1. String channel
)

Retrieves the fetch time for the specified channel from the repository.

Implementation

Future<int> getChannelFetchTime(String channel) async {
  return await messageRepository.getChannelFetchTime(channel);
}