copyWith method
Implementation
OrderInfo copyWith({
String? name,
String? phoneNumber,
String? emailAddress,
Address? shippingAddress,
dynamic extra,
int? clientId,
}) => OrderInfo(
name: name ?? this.name,
phoneNumber: phoneNumber ?? this.phoneNumber,
emailAddress: emailAddress ?? this.emailAddress,
shippingAddress: shippingAddress ?? this.shippingAddress,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);