getNestedStringList 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 getNestedStringList(int depth) =>
getNestedList<String>(depth: depth, valueList: <String>[]);