How can I change the date format in Flutter? I want to swap the positions of date and month.
// prints 2022-09-08 13:46:45.778709
print('old date');
print(date);
// prints September 8, 2022
print('new date');
print(DateFormat.yMMMMd('en_US').format(date));
// how to print in 8 September, 2022?
print('new format');