copyWithWrapped method

Implementation

WebApiModulesIntegrationsStorefrontLoginRequest copyWithWrapped({
  Wrapped<String>? email,
  Wrapped<String>? password,
}) {
  return WebApiModulesIntegrationsStorefrontLoginRequest(
    email: (email != null ? email.value : this.email),
    password: (password != null ? password.value : this.password),
  );
}