singleFormatDateRange function
- {required DateTime startDateTime}
Implementation
String singleFormatDateRange({required DateTime startDateTime}) {
final startDay = DateFormat('d').format(startDateTime);
return "${DateFormat('MMMM').format(startDateTime)} $startDay";
}