hxFormatDate static method
Implementation
static String hxFormatDate(int? date, List<String> formats,
{String nullStr = "-"}) {
if (date == null) {
return nullStr;
}
return formatDate(DateTime.fromMillisecondsSinceEpoch(date), formats);
}