shortUrl property
String
get
shortUrl
Get short URL path.
Implementation
String get shortUrl {
final uri = Uri.tryParse(url);
if (uri == null) return url;
return uri.path.isEmpty ? '/' : uri.path;
}