toDateString method
Implementation
String toDateString() {
if (this != null) {
return DateFormat('dd/MM/yyyy').format(this!);
}
return '';
}
String toDateString() {
if (this != null) {
return DateFormat('dd/MM/yyyy').format(this!);
}
return '';
}