formatDateTime static method
日期时间格式化
timestamp 时间戳
format 格式化字符串 默认为 dateTimeFormat
默认返回:2021-07-17 15:30:00
Implementation
static String formatDateTime(DateTime timestamp, [String format = dateTimeFormat]) {
DateFormat dateFormat = DateFormat(format);
return dateFormat.format(timestamp);
}