copyWith method

GetVideoChatInviteLink copyWith({
  1. int? groupCallId,
  2. bool? canSelfUnmute,
})

Implementation

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