title property
String
get
title
Implementation
static String get title {
String? title;
var e = window.document.getElementsByName("description");
if (e.isNotEmpty && e.first is MetaElement) {
title = (e.first as MetaElement).content;
}
return title ?? FmlEngine.title;
}