copyWith method

WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest copyWith({
  1. String? activeLinkToken,
  2. String? account,
  3. String? expirationDate,
  4. bool? capture,
  5. String? countryId,
})

Implementation

WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest
    copyWith(
        {String? activeLinkToken,
        String? account,
        String? expirationDate,
        bool? capture,
        String? countryId}) {
  return WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkAuthorizeRequest(
      activeLinkToken: activeLinkToken ?? this.activeLinkToken,
      account: account ?? this.account,
      expirationDate: expirationDate ?? this.expirationDate,
      capture: capture ?? this.capture,
      countryId: countryId ?? this.countryId);
}