copyWith method
PaymentInitiationConsentCreateResponse
copyWith({
- String? consentId,
- PaymentInitiationConsentStatus? status,
- String? requestId,
Implementation
PaymentInitiationConsentCreateResponse copyWith(
{String? consentId,
enums.PaymentInitiationConsentStatus? status,
String? requestId}) {
return PaymentInitiationConsentCreateResponse(
consentId: consentId ?? this.consentId,
status: status ?? this.status,
requestId: requestId ?? this.requestId);
}