gridRowStart property
Implementation
@override
GridPlacement get gridRowStart => _gridRowStart ?? const GridPlacement.auto();
set
gridRowStart
(GridPlacement? value)
Implementation
set gridRowStart(GridPlacement? value) {
if (_gridRowStart == value) return;
_gridRowStart = value;
markNeedsIntrinsicMeasurement('gridRowStart');
markNeedsLayout();
if (isParentRenderGridLayout()) {
markParentNeedsLayout();
}
}