how to make string shorter in flutter code example
Example 1: flutter length of string
int stringLength = "hello".length;
Example 2: Flutter get each letter from string
'${mystring[0]}'
int stringLength = "hello".length;
'${mystring[0]}'