copyWith method
Implementation
GroupCallParticipants copyWith({
int? totalCount,
List<MessageSender>? participantIds,
}) => GroupCallParticipants(
totalCount: totalCount ?? this.totalCount,
participantIds: participantIds ?? this.participantIds,
);