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);