timestampFormatted property

String get timestampFormatted

Implementation

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