getSingle method
Implementation
String getSingle(DateType dateType) {
switch (dateType) {
case DateType.year:
return years;
case DateType.month:
return month;
case DateType.day:
return days;
case DateType.hour:
return hours;
case DateType.minute:
return minutes;
case DateType.second:
return seconds;
}
}