by @kodeazy

flutter How to get first letter of string in dart file?

Home » flutter » flutter How to get first letter of string in dart file?
void main() {
  String example = "Testing";
  print(example[0]);

Output

T