toDate method

String toDate()

Implementation

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