copyWithWrapped method

Implementation

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