getChildrenByTag method

List<T> getChildrenByTag(
  1. NbtTagType tagType
)

Get a list of children

Implementation

List<T> getChildrenByTag(NbtTagType tagType) =>
    where((tag) => tag.nbtTagType == tagType).toList();