fullDateTimeMdy property
String
get
fullDateTimeMdy
Formats the DateTime into 'MM/dd/yyyy HH:mm:ss' format.
Example:
print(DateTime.now().fullDateTimeMdy); // Output: "04/07/2023 12:00:00"
Implementation
String get fullDateTimeMdy => DateFormats.fullDateTimeMdy.format(this);