toTableFormat method
Implementation
String toTableFormat() {
if (isNotNullOrEmpty) {
try {
final date = DateTime.parse(this!);
return DateFormat('dd/MM/yy, HH:mm').formatLocalized(date);
} catch (e) {
return this!;
}
} else {
return '';
}
}