justifyContent property

  1. @override
JustifyContent get justifyContent
override

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();
  }
}