copyWith method

ToggleGroupCallParticipantIsMuted copyWith({
  1. int? groupCallId,
  2. MessageSender? participantId,
  3. bool? isMuted,
})

Implementation

ToggleGroupCallParticipantIsMuted copyWith({
  int? groupCallId,
  MessageSender? participantId,
  bool? isMuted,
}) =>
    ToggleGroupCallParticipantIsMuted(
      groupCallId: groupCallId ?? this.groupCallId,
      participantId: participantId ?? this.participantId,
      isMuted: isMuted ?? this.isMuted,
    );