gridRowEnd property
Implementation
GridPlacement get gridRowEnd => _gridRowEnd ?? const GridPlacement.auto();
set
gridRowEnd
(GridPlacement? value)
Implementation
set gridRowEnd(GridPlacement? value) {
if (_gridRowEnd == value) return;
_gridRowEnd = value;
markNeedsLayout();
}