copyWithWrapped method

Implementation

WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkSendPreAuthorizeEmailResponse
    copyWithWrapped(
        {Wrapped<bool?>? success,
        Wrapped<String?>? status,
        Wrapped<String?>? statusText}) {
  return WebApiModulesPagesActiveLinkCardPointePaymentPaymentActiveLinkSendPreAuthorizeEmailResponse(
      success: (success != null ? success.value : this.success),
      status: (status != null ? status.value : this.status),
      statusText: (statusText != null ? statusText.value : this.statusText));
}