copyWith method

JoinVideoChat copyWith({
  1. int? groupCallId,
  2. MessageSender? participantId,
  3. GroupCallJoinParameters? joinParameters,
  4. String? inviteHash,
})

Implementation

JoinVideoChat copyWith({
  int? groupCallId,
  MessageSender? participantId,
  GroupCallJoinParameters? joinParameters,
  String? inviteHash,
}) => JoinVideoChat(
  groupCallId: groupCallId ?? this.groupCallId,
  participantId: participantId ?? this.participantId,
  joinParameters: joinParameters ?? this.joinParameters,
  inviteHash: inviteHash ?? this.inviteHash,
);