Retorna o comprimento da string, incluindo espaço, tabulação e caracteres de nova linha.
Sintaxe
String.length
Exemplo
void main() {
String str = "Hello All";
print("The length of the string is: ${str.length}");
}
Irá produzir o seguinte output -.
The length of the string is: 9