justifyEnd method
How the children within a run should be placed in the main axis.
Using WrapAlignment.end
Equivalent to
Wrap(
alignment: WrapAlignment.end
)
Implementation
NikuWrap justifyEnd() {
_alignment = WrapAlignment.end;
return this;
}