now property

String get now

Implementation

static String get now {
  final t = DateTime.now();
  return '${t.year}-${t.month.pad}-${t.day.pad} ${t.hour.pad}:${t.minute.pad}:${t.second.pad}';
}