asEEE property
String
get
asEEE
Formats as "EEE" (day of week).
Implementation
String get asEEE => this <= 0
? '-'
: DateUtil.eee.format(DateTime.fromMillisecondsSinceEpoch(this));
Formats as "EEE" (day of week).
String get asEEE => this <= 0
? '-'
: DateUtil.eee.format(DateTime.fromMillisecondsSinceEpoch(this));