copyWith method
PaymentInitiationPaymentCreateResponse
copyWith({
- String? paymentId,
- PaymentInitiationPaymentCreateStatus? status,
- String? requestId,
Implementation
PaymentInitiationPaymentCreateResponse copyWith(
{String? paymentId,
enums.PaymentInitiationPaymentCreateStatus? status,
String? requestId}) {
return PaymentInitiationPaymentCreateResponse(
paymentId: paymentId ?? this.paymentId,
status: status ?? this.status,
requestId: requestId ?? this.requestId);
}