Retorna o tamanho da lista.
List.length
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