justifyContent property
Implementation
@override
JustifyContent get justifyContent => _justifyContent ?? JustifyContent.flexStart;
set
justifyContent
(JustifyContent? value)
Implementation
set justifyContent(JustifyContent? value) {
if (_justifyContent == value) return;
_justifyContent = value;
if (renderBoxModel is RenderFlexLayout) {
renderBoxModel!.markNeedsLayout();
}
}