simpleDate method

String simpleDate(
  1. int timestamp
)

Implementation

String simpleDate(int timestamp) {
  DateTime date = DateTime.fromMillisecondsSinceEpoch(timestamp);

  return "${date.day} ${shortMonths[date.month]}, ${date.year}";
}