setGroup method

  1. @override
void setGroup(
  1. GroupedRangeList<bool> group
)
override

Sets the values ​​in accordance with the specified group.

Implementation

@override
void setGroup(GroupedRangeList<bool> group) {
  if (group.key is! bool) {
    throw ArgumentError("Key '${group.key}' must be of type 'bool'.");
  }

  super.setGroup(group);
}