singleFormatDateRange function

String singleFormatDateRange(
  1. {required DateTime startDateTime}
)

Implementation

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