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 'Last $count ${count == 1 ? 'week' : 'weeks'}';
}