format method

String format([
  1. String format = "yyyy-MM-dd HH:mm:ss"
])

获取指定格式的当前时间

Implementation

String format([String format = "yyyy-MM-dd HH:mm:ss"]) {
  return DateFormat(format).format(this);
}