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 '近$count月';
}