asDDMMYYYYHHMMA property

String get asDDMMYYYYHHMMA

Formats as "dd-MMM-y h:mm a".

Implementation

String get asDDMMYYYYHHMMA => this <= 0
    ? '-'
    : DateUtil.ddmmyhhmma.format(DateTime.fromMillisecondsSinceEpoch(this));