Devuelve la longitud de la cadena, incluidos los caracteres de espacio, tabulación y nueva línea.
Sintaxis
String.length
Ejemplo
void main() {
String str = "Hello All";
print("The length of the string is: ${str.length}");
}
Producirá lo siguiente output -.
The length of the string is: 9