recentWeeksLabel method

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

Label for recent weeks choice on quick choices.

Implementation

@override
String recentWeeksLabel(int count) {
  assert(count > 0);
  return '近$count周';
}