recentDaysLabel method

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

Label for recent days choice on quick choices.

Implementation

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