copyWith method
Implementation
ShopifySharpShipping copyWith({
bool? fullRefund,
double? amount,
double? maximumRefundable,
}) {
return ShopifySharpShipping(
fullRefund: fullRefund ?? this.fullRefund,
amount: amount ?? this.amount,
maximumRefundable: maximumRefundable ?? this.maximumRefundable,
);
}