countMembers method

Future<int> countMembers()

To get the count of the Conversation.members.

Implementation

Future<int> countMembers() async {
  var args = {
    'clientId': client.id,
    'conversationId': id,
  };
  return await call(
    method: 'countMembers',
    arguments: args,
  );
}