name property
String?
get
name
UUID name if supported or UUID
Implementation
String? get name {
if (bytes.length <= 4 || uuid.substring(8) == baseUuid) {
var v = _uuidValue;
if (uuidNameMap.containsKey(v)) {
return uuidNameMap[v];
}
}
return uuid;
}