copyWith method
Implementation
UpdateNewShippingQuery copyWith({
int? id,
int? senderUserId,
String? invoicePayload,
Address? shippingAddress,
}) => UpdateNewShippingQuery(
id: id ?? this.id,
senderUserId: senderUserId ?? this.senderUserId,
invoicePayload: invoicePayload ?? this.invoicePayload,
shippingAddress: shippingAddress ?? this.shippingAddress,
);