copyWith method
Implementation
GetGroupCallInviteLink copyWith({
int? groupCallId,
bool? canSelfUnmute,
}) =>
GetGroupCallInviteLink(
groupCallId: groupCallId ?? this.groupCallId,
canSelfUnmute: canSelfUnmute ?? this.canSelfUnmute,
);