copyWith method
Implementation
ShopifySharpPaymentsRefundAttributes copyWith({
String? status,
String? acquirerReferenceNumber,
}) {
return ShopifySharpPaymentsRefundAttributes(
status: status ?? this.status,
acquirerReferenceNumber:
acquirerReferenceNumber ?? this.acquirerReferenceNumber,
);
}