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