toDay method

String toDay()

Implementation

String toDay() {
  var time = DateTime.parse(this);
  return "${addZeroIfLess10(time.day)}.${addZeroIfLess10(time.month)}.${addZeroIfLess10(time.year)}";
}