copyWithWrapped method

WebApiModulesIntegrationsStorefrontLoginResponse copyWithWrapped({
  1. Wrapped<String?>? authToken,
  2. Wrapped<String?>? fullName,
})

Implementation

WebApiModulesIntegrationsStorefrontLoginResponse copyWithWrapped({
  Wrapped<String?>? authToken,
  Wrapped<String?>? fullName,
}) {
  return WebApiModulesIntegrationsStorefrontLoginResponse(
    authToken: (authToken != null ? authToken.value : this.authToken),
    fullName: (fullName != null ? fullName.value : this.fullName),
  );
}