NbtByteArray constructor
Create a NbtByteArray. To load any values, call readTag.
Implementation
NbtByteArray({required String name, required List<int> children})
: super(name, NbtTagType.TAG_BYTE_ARRAY) {
this.children = children;
}
Create a NbtByteArray. To load any values, call readTag.
NbtByteArray({required String name, required List<int> children})
: super(name, NbtTagType.TAG_BYTE_ARRAY) {
this.children = children;
}