host property
String
get
host
The PostHog ingestion host.
Defaults to https://us.i.posthog.com. The setter trims surrounding
whitespace and falls back to the default host when assigned a blank value.
Implementation
String get host => _host;
set
host
(String value)
Implementation
set host(String value) => _host = _normalizeHost(value);