dateTimeSecondString property
String
get
dateTimeSecondString
Implementation
String get dateTimeSecondString {
String time = getTimeFormat (includeSeconds: true);
/// Return date formatted dd-MM-yyyy hh:mm:ss
DateFormat format = DateFormat.yMd (configuration.locale);
return "${format.format(this)}"
" ${DateFormat(time, configuration.locale).format(this)}";
}