copyWith method

PaymentInitiationConsentGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? consentId,
})

Implementation

PaymentInitiationConsentGetRequest copyWith(
    {String? clientId, String? secret, String? consentId}) {
  return PaymentInitiationConsentGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      consentId: consentId ?? this.consentId);
}