getNestedIntList function
- int depth
Get a List
Specify depth
to added one or more parent Lists.
Example:
depth
0 = Listdepth
2 = List<List<List
Implementation
List getNestedIntList(int depth) =>
getNestedList<int>(depth: depth, valueList: <int>[]);