setShowColumnTitle method

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

Implementation

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

  _state._showColumnTitle = flag;

  notifyListeners(notify, setShowColumnTitle.hashCode);
}