getChildrenArray method

List<DictSegment?> getChildrenArray()

获取数组容器 线程同步方法

Implementation

List<DictSegment?> getChildrenArray() {
  childrenArray ??= List<DictSegment?>.filled(ARRAY_LENGTH_LIMIT, null);
  return childrenArray!;
}