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