Flutter Dapatkan setiap huruf dari string

  String mystring = 'Hello World';

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