getChildrenArray method
获取数组容器 线程同步方法
Implementation
List<DictSegment?> getChildrenArray() {
childrenArray ??= List<DictSegment?>.filled(ARRAY_LENGTH_LIMIT, null);
return childrenArray!;
}
获取数组容器 线程同步方法
List<DictSegment?> getChildrenArray() {
childrenArray ??= List<DictSegment?>.filled(ARRAY_LENGTH_LIMIT, null);
return childrenArray!;
}