copyWith method

LinkTokenCreateRequestPaymentInitiation copyWith({
  1. String? paymentId,
  2. String? consentId,
})

Implementation

LinkTokenCreateRequestPaymentInitiation copyWith(
    {String? paymentId, String? consentId}) {
  return LinkTokenCreateRequestPaymentInitiation(
      paymentId: paymentId ?? this.paymentId,
      consentId: consentId ?? this.consentId);
}