justifyItems property

GridAxisAlignment get justifyItems
override

Implementation

GridAxisAlignment get justifyItems => _normalizeAxisAlignmentValue(_justifyItems);
set justifyItems (GridAxisAlignment? value)

Implementation

set justifyItems(GridAxisAlignment? value) {
  if (_justifyItems == value) return;
  _justifyItems = value;
  if (isSelfRenderGridLayout()) markNeedsLayout();
}