I've been playing around in Flutter for the last couple of weeks and I'm finding that the documentation is useless.
I'm trying find documentation on how to setup a 2D Array. Something that should be easy to find, but I can't find anything useful on how to format an array. After much Google searching, I was able to create a 1D array, but haven't had any luck on creating a 2D Array.
Here's my 1D Array example in case someone comes across this post for that reason (the keyword 'static' shouldn't be required, it just allows me to use the Array on different scripts in my project.):
static var vGrades = ['PreK', 'K', '1st', '2nd', '3rd', '4th', '5th', '6th', '7th', '8th', '9th', '10th', '11th', '12th'];
Note, I don't want to name each column, just want to reference an Array like "vArray[2][3]" (3rd indexed line, 4th indexed element).