copyWith method
Implementation
WebApiModulesIntegrationsStorefrontLoginResponse copyWith({
String? authToken,
String? fullName,
}) {
return WebApiModulesIntegrationsStorefrontLoginResponse(
authToken: authToken ?? this.authToken,
fullName: fullName ?? this.fullName,
);
}