asDDMMYYYY property

String get asDDMMYYYY

Formats as "dd-MMM-y".

Implementation

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