gridRowEnd property

  1. @override
GridPlacement get gridRowEnd
override

Implementation

@override
GridPlacement get gridRowEnd => _gridRowEnd ?? const GridPlacement.auto();
set gridRowEnd (GridPlacement? value)

Implementation

set gridRowEnd(GridPlacement? value) {
  if (_gridRowEnd == value) return;
  _gridRowEnd = value;
  markNeedsIntrinsicMeasurement('gridRowEnd');
  markNeedsLayout();
  if (isParentRenderGridLayout()) {
    markParentNeedsLayout();
  }
}