asHHMMA property
String
get
asHHMMA
Formats as "hh:mm a" (12-hour with AM/PM).
Implementation
String get asHHMMA => this <= 0
? '-'
: DateUtil.hh12mma.format(DateTime.fromMillisecondsSinceEpoch(this));