setShowColumnGroups method

  1. @override
void setShowColumnGroups(
  1. bool flag, {
  2. bool notify = true,
})
inherited

Implementation

@override
void setShowColumnGroups(bool flag, {bool notify = true}) {
  if (showColumnGroups == flag) {
    return;
  }

  _state._showColumnGroups = flag;

  notifyListeners(notify, setShowColumnGroups.hashCode);
}