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