Lista 2D em Dart
//Declare and initialize a matrix x having
//m rows and n columns, containing real numbers.
var x = new List.generate(m, (_) => new List(n));
Bijay Poudel