recentMonthsLabel method

  1. @override
String recentMonthsLabel(
  1. int count
)
override

Label for recent months choice on quick choices.

Implementation

@override
String recentMonthsLabel(int count) {
  assert(count > 0);
  return 'Last $count ${count == 1 ? 'month' : 'months'}';
}