host property Null safety
Extracts the host from the base URL.
Implementation
String get host {
final uri = Uri.parse(baseUrl);
return uri.host;
}
Extracts the host from the base URL.
String get host {
final uri = Uri.parse(baseUrl);
return uri.host;
}