Programação Dart - Método List.length

Retorna o tamanho da lista.

Sintaxe

List.length

Exemplo

void main() { 
   var lst = new List(); 
   lst.add(12); 
   lst.add(13); 
   print("The length of the list is : ${lst.length}"); 
}

Irá produzir o seguinte output -.

The length of the list is : 2