copyWith method

GroupCallRecentSpeaker copyWith({
  1. MessageSender? participantId,
  2. bool? isSpeaking,
})

Implementation

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