getChannel method

Future<AmityChannel> getChannel(
  1. String channelId
)

Get the AmityChannel by channel Id

Implementation

Future<AmityChannel> getChannel(String channelId) {
  return serviceLocator<ChannelGetUseCase>().get(channelId);
}