Esta propriedade retorna o primeiro elemento da lista.
Sintaxe
List.first
Exemplo
void main() {
var lst = new List();
lst.add(12);
lst.add(13);
print("The first element of the list is: ${lst.first}");
}
Isso produzirá o seguinte output -.
The first element of the list is: 12