how to get the first character of a string in flutter code example
Example: first caractere in String in dart
String mystring = 'Hello World';
print('${mystring[0]}');
String mystring = 'Hello World';
print('${mystring[0]}');