NbtIntArray constructor

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

Create a NbtIntArray with given parent.

Implementation

NbtIntArray({required String name, required List<int> children})
    : super(name, NbtTagType.TAG_INT_ARRAY) {
  this.children = children;
}