gridColumnEnd property

GridPlacement get gridColumnEnd
override

Implementation

GridPlacement get gridColumnEnd => _gridColumnEnd ?? const GridPlacement.auto();
set gridColumnEnd (GridPlacement? value)

Implementation

set gridColumnEnd(GridPlacement? value) {
  if (_gridColumnEnd == value) return;
  _gridColumnEnd = value;
  markNeedsLayout();
}