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, 'zh').format(this);
}