hasValue property

bool get hasValue

If this tag directly has a value.

Implementation

bool get hasValue {
  switch (nbtTagType) {
    case NbtTagType.TAG_END:
    case NbtTagType.TAG_COMPOUND:
    case NbtTagType.TAG_LIST:
      return false;
    default:
      return true;
  }
}