formatReadableDate method
Implementation
String formatReadableDate() {
// Format the date as "Day Month Year" (e.g., "17 Aug 2024")
return '${day.toString().padLeft(2, '0')} '
'${_monthName(month)} '
'$year';
}
String formatReadableDate() {
// Format the date as "Day Month Year" (e.g., "17 Aug 2024")
return '${day.toString().padLeft(2, '0')} '
'${_monthName(month)} '
'$year';
}