timeFormat method
Implementation
String timeFormat([bool withSeconds = false]) {
final format =
withSeconds
? DateFormat.jms(LangQ.currentLocale.toString())
: DateFormat.jm(LangQ.currentLocale.toString());
return format.format(this);
}