shortDateTime property

String get shortDateTime

문자열을 DateTime 으로 변경한 다음,

  • 오늘 날짜이면, HH:MM AM 로 리턴하고
  • 오늘 날짜가 아니면, YYYY-MM-DD 형태로 리턴한다.

Implementation

String get shortDateTime {
  final dt = dateTime;
  final now = DateTime.now();
  if (dt.year == now.year && dt.month == now.month && dt.day == now.day) {
    return DateFormat.jm().format(dt);
  } else {
    return DateFormat('yy.MM.dd').format(dt);
  }
}