copyWith method

Implementation

WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkSendPreAuthorizeEmailResponse
    copyWith({bool? success, String? status, String? statusText}) {
  return WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkSendPreAuthorizeEmailResponse(
      success: success ?? this.success,
      status: status ?? this.status,
      statusText: statusText ?? this.statusText);
}