FB_Format method

String FB_Format(
  1. int timestamp
)

Aug 29, 2023 at 12:27 AM

Implementation

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