NbtByteArray constructor

NbtByteArray({
  1. required String name,
  2. required List<int> children,
})

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