copyWith method
ToggleGroupCallParticipantIsHandRaised
copyWith({
- int? groupCallId,
- MessageSender? participantId,
- bool? isHandRaised,
Implementation
ToggleGroupCallParticipantIsHandRaised copyWith({
int? groupCallId,
MessageSender? participantId,
bool? isHandRaised,
}) => ToggleGroupCallParticipantIsHandRaised(
groupCallId: groupCallId ?? this.groupCallId,
participantId: participantId ?? this.participantId,
isHandRaised: isHandRaised ?? this.isHandRaised,
);