Flutter Obtenha cada letra da corda

  String mystring = 'Hello World';

  print('${mystring[0]}');
Gifted Gazelle