bootDateFormatted property
String
get
bootDateFormatted
Implementation
String get bootDateFormatted {
return '${bootDate.year}-${bootDate.month.toString().padLeft(2, '0')}'
'-${bootDate.day.toString().padLeft(2, '0')} '
'${bootDate.hour.toString().padLeft(2, '0')}:'
'${bootDate.minute.toString().padLeft(2, '0')}:'
'${bootDate.second.toString().padLeft(2, '0')}';
}