createGroupChat method
Creates a group Chat with the provided members and the authenticated
MyUser, optionally name
d.
Implementation
Future<RxChat> createGroupChat(
List<UserId> memberIds, {
ChatName? name,
}) async {
Log.debug('createGroupChat($memberIds, $name)', '$runtimeType');
return await _chatRepository.createGroupChat(memberIds, name: name);
}