mdy property
String
get
mdy
Formats the DateTime into 'MM/dd/yyyy', American style date format.
Example:
print(DateTime.now().mdy); // Output: "04/07/2023"
Implementation
String get mdy => DateFormats.mdy.format(this);