formatDDMMYYYYHHMMAMPM method
Implementation
@override
String formatDDMMYYYYHHMMAMPM(var date) {
if(date is String) {
DateTime newDate= helper2(date);
return DateFormat('dd/MM/yyyy hh:mm a').format(newDate);
}
return DateFormat('dd/MM/yyyy hh:mm a').format(date);
}