group method

List<T> group(
  1. int hundred
)

The values of one hundred-group, e.g. TagHotel.values.group(500) = the hotel amenities (501, 502...).

Implementation

List<T> group(int hundred) => where((dynamic e) => (e as dynamic).number ~/ 100 == hundred ~/ 100).toList();