FIREBASE method

String FIREBASE(
  1. int timestamp
)

12 August 2023 at 09:41:45 UTC+5

Implementation

String FIREBASE(int timestamp) {
  DateTime date = DateTime.fromMillisecondsSinceEpoch(timestamp);
  return "${date.day} ${_monthFullName(date.month)} ${date.year} at ${HMS_24(timestamp)} ${date.timeZoneName} ${date.timeZoneOffset.inHours}";
}