justifyContent property

  1. @override
JustifyContent justifyContent
override

Implementation

@override
JustifyContent get justifyContent => _justifyContent ?? JustifyContent.flexStart;
void justifyContent=(JustifyContent? value)

Implementation

set justifyContent(JustifyContent? value) {
  if (_justifyContent == value) return;
  _justifyContent = value;
  if (renderBoxModel is RenderFlexLayout) {
    renderBoxModel!.markNeedsLayout();
  }
}