copyWith method
Implementation
GroupCallRecentSpeaker copyWith({
MessageSender? participantId,
bool? isSpeaking,
}) => GroupCallRecentSpeaker(
participantId: participantId ?? this.participantId,
isSpeaking: isSpeaking ?? this.isSpeaking,
);
GroupCallRecentSpeaker copyWith({
MessageSender? participantId,
bool? isSpeaking,
}) => GroupCallRecentSpeaker(
participantId: participantId ?? this.participantId,
isSpeaking: isSpeaking ?? this.isSpeaking,
);