gridRowStart property

GridPlacement get gridRowStart
override

Implementation

GridPlacement get gridRowStart => _gridRowStart ?? const GridPlacement.auto();
set gridRowStart (GridPlacement? value)

Implementation

set gridRowStart(GridPlacement? value) {
  if (_gridRowStart == value) return;
  _gridRowStart = value;
  markNeedsLayout();
}