layoutChanged method

  1. @override
void layoutChanged()
override

Notifies the feature that the current grid layout has changed.

Implementation

@override
void layoutChanged() {
  if (!isAttached || _disposed) {
    return;
  }
  _layoutChangedCommand?.call();
}