HMMDY method

String HMMDY(
  1. int timestamp
)

9:12 AM on May 9, 2023

Implementation

String HMMDY(int timestamp) {
  DateTime date = DateTime.fromMillisecondsSinceEpoch(timestamp);
  return "${HM_12(timestamp)} on ${shortMonths[date.month]} ${date.day}, ${date.year}";
}