Lunghezza proprietà stringa
Restituisce la lunghezza della stringa inclusi spazio, tabulazione e caratteri di nuova riga.
Sintassi
String.length
Esempio
void main() {
String str = "Hello All";
print("The length of the string is: ${str.length}");
}
Produrrà quanto segue output -.
The length of the string is: 9