removeMemebesr method

Future removeMemebesr(
  1. List<String> userIds
)

Remove member to channel

Implementation

Future removeMemebesr(List<String> userIds) {
  return serviceLocator<ChannelMemberRemoveUsecase>().get(
      UpdateChannelMembersRequest(channelId: channelId!, userIds: userIds));
}