get first three letter of month name in flutter code example
Example 1: Flutter get each letter from string
'${mystring[0]}'
Example 2: Flutter get each letter from string
String mystring = 'Hello World';
print('${mystring[0]}');
Example 3: get first three letter of month name in flutter
DateFormat formatter = DateFormat('MMM'); // create a formatter to get months 3 character
String monthAbbr = formatter.format(DateTime.now()); // now pass your required date and get month