copyWith method
PaymentInitiationPaymentReverseResponse
copyWith({
- String? refundId,
- WalletTransactionStatus? status,
- String? requestId,
Implementation
PaymentInitiationPaymentReverseResponse copyWith(
{String? refundId,
enums.WalletTransactionStatus? status,
String? requestId}) {
return PaymentInitiationPaymentReverseResponse(
refundId: refundId ?? this.refundId,
status: status ?? this.status,
requestId: requestId ?? this.requestId);
}