PAKISTANI method

String PAKISTANI(
  1. int timestamp
)

DD-MM-YYYY

Implementation

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

  return "${date.day}-${date.month}-${date.year}";
}