shortLink property
String
get
shortLink
Implementation
String get shortLink {
if (_shortLinkCache.isNotEmpty) return _shortLinkCache;
if (_shortlink.isEmpty) {
_bodyFucked = true;
return 'BROKEN_SLINK';
}
_shortLinkCache = base64UrlEncode(_shortlink);
return _shortLinkCache;
//return HtmlEscape().convert(utf8.decode(_shortlink));
}