trackLayoutChanges property

bool get trackLayoutChanges

Whether to track the source for changes.

Implementation

bool get trackLayoutChanges =>
    _backingMap[#trackLayoutChanges] as bool? ?? false;
set trackLayoutChanges (bool? trackLayoutChanges)

Implementation

set trackLayoutChanges(bool? trackLayoutChanges) {
  _backingMap[#trackLayoutChanges] = trackLayoutChanges;
}