Pressing Lend a hand
How I will create 3-d Array in DART. I will create 2D which is somewhat simple for instance
2D Array
Checklist<Checklist<int>> grid = Checklist.stuffed(m, 0).map((e) => Checklist.stuffed(n, 0)).toList();
// OR
Checklist<Checklist<int>> array2D = [].map((e) => <int>[]).toList();
BUT
How I will Create a 3-d array OR Multi-Dimensional in DART
View Reddit by means of ayoubzulfiqar – View Supply