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