getNiceSmallDate static method
Implementation
static String getNiceSmallDate(String date, DateFormat format, {String? localeCode}) {
try {
return '${DateFormat('dd MMM, HH:mm', localeCode ?? 'ca_ES').format(format.parseUTC(date).toLocal())}h';
} catch (e) {
return '';
}
}