copyWith method
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);
}