toDayFollowedByMonthText function
Implementation
String toDayFollowedByMonthText(DateTime? dateTime,
{String defaultValue = '', String prefix = ''}) {
if (dateTime == null) return defaultValue;
return '$prefix${dateTime.day} ${getShortMonthText(dateTime.month)}';
}