alignment property

WrapAlignment get alignment

Distribution of children within each run.

Implementation

WrapAlignment get alignment => _alignment;
set alignment (WrapAlignment value)

Updates child distribution.

Implementation

set alignment(WrapAlignment value) {
  if (_alignment == value) return;
  _alignment = value;
  markNeedsLayout();
}