formatedDateNow static method

String formatedDateNow()

Implementation

static String formatedDateNow() {
  var format = DateFormat('yyyy-MM-dd HH:mm:ss');
  return format.format(DateTime.now());
}