formatMs static method
Implementation
static String formatMs(int ms, {bool isUtc = false, String format = "yyyy-MM-dd HH:mm:ss"}){
var date = DateTime.fromMillisecondsSinceEpoch(ms, isUtc: isUtc);
return DateFormat(format).format(date);
}
static String formatMs(int ms, {bool isUtc = false, String format = "yyyy-MM-dd HH:mm:ss"}){
var date = DateTime.fromMillisecondsSinceEpoch(ms, isUtc: isUtc);
return DateFormat(format).format(date);
}