copyWith method
JoinVideoChat
copyWith({
- int? groupCallId,
- MessageSender? participantId,
- GroupCallJoinParameters? joinParameters,
- 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,
);