NbtLongArray constructor

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

Create a NbtLongArray with given parent.

Implementation

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