kformatDateF method

String kformatDateF(
  1. String format, {
  2. bool isUtc = false,
})

毫秒 format 转换格式,自定义转换格式

Implementation

String kformatDateF(String format, {bool isUtc = false}) {
  if (this == null) return '';
  return kgetDateTime(isUtc: isUtc).kformatF(format);
}