copyWith method
Implementation
ChatMembers copyWith({
  int? totalCount,
  List<ChatMember>? members,
  dynamic extra,
  int? clientId,
}) => ChatMembers(
  totalCount: totalCount ?? this.totalCount,
  members: members ?? this.members,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);