monthNameShort property

String get monthNameShort

Get the short name of the month

Example:

final date = DateTime(2023, 12, 25);
print(date.monthNameShort); // "Dec"

Implementation

String get monthNameShort => format('MMM');