mdy property
String
get
mdy
Formats the current number as a date string in 'MM/dd/yyyy' format.
Example:
print(1609459200000.mdy); // 01/01/2021
Implementation
String get mdy => DateFormats.mdy.format(toDateTime);