copyWith method

VideoChat copyWith({
  1. int? groupCallId,
  2. bool? hasParticipants,
  3. MessageSender? defaultParticipantId,
})

Implementation

VideoChat copyWith({
  int? groupCallId,
  bool? hasParticipants,
  MessageSender? defaultParticipantId,
}) =>
    VideoChat(
      groupCallId: groupCallId ?? this.groupCallId,
      hasParticipants: hasParticipants ?? this.hasParticipants,
      defaultParticipantId: defaultParticipantId ?? this.defaultParticipantId,
    );