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