justifyItems property
Implementation
GridAxisAlignment get justifyItems => _normalizeAxisAlignmentValue(_justifyItems);
set
justifyItems
(GridAxisAlignment? value)
Implementation
set justifyItems(GridAxisAlignment? value) {
if (_justifyItems == value) return;
_justifyItems = value;
if (isSelfRenderGridLayout()) markNeedsLayout();
}