copyWith method

GroupCallParticipants copyWith({
  1. int? totalCount,
  2. List<MessageSender>? participantIds,
})

Implementation

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