copyWith method

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

Implementation

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