getChannelMembers method

Future<List<MmChannelMember>?> getChannelMembers(
  1. String channelId, {
  2. int? page,
  3. int? perPage,
})

Get channel members

Get a page of members for a channel. ##### Permissions read_channel permission for the channel.

Parameters:

  • String channelId (required): Channel GUID

  • int page: The page to select.

  • int perPage: The number of members per page. There is a maximum limit of 200 members.

Implementation

Future<List<MmChannelMember>?> getChannelMembers(
  String channelId, {
  int? page,
  int? perPage,
}) async {
  final response = await getChannelMembersWithHttpInfo(
    channelId,
    page: page,
    perPage: perPage,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw MmApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
    final responseBody = await _decodeBodyBytes(response);
    return (await apiClient.deserializeAsync(responseBody, 'List<MmChannelMember>') as List)
        .cast<MmChannelMember>()
        .toList();
  }
  return null;
}