uuid property

String uuid

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";
}