getMonths method

  1. @override
String getMonths(
  1. int months
)
override

Implementation

@override
String getMonths(int months) {
  if (months == 0) {
    return '';
  } else {
    return messages.monthsPlural(months);
  }
}