uuid property
String
get
uuid
The uuid of the descriptor.
See:
Implementation
String get uuid {
var uuid = _uuid;
if (uuid != null) {
return uuid;
}
uuid = _JSUtil.getProperty(_jsObject, "uuid");
if (uuid != null) {
_uuid = uuid;
return uuid;
}
return "UNKNOWN";
}