justifySelf property

GridAxisAlignment get justifySelf
override

Implementation

GridAxisAlignment get justifySelf => _justifySelf ?? GridAxisAlignment.auto;
set justifySelf (GridAxisAlignment? value)

Implementation

set justifySelf(GridAxisAlignment? value) {
  if (_justifySelf == value) return;
  _justifySelf = value;
  if (isParentRenderGridLayout()) markNeedsLayout();
}