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