alignSelf property
Implementation
@override
AlignSelf get alignSelf => _alignSelf ?? AlignSelf.auto;
set
alignSelf
(AlignSelf? value)
Implementation
set alignSelf(AlignSelf? value) {
if (_alignSelf == value) return;
_alignSelf = value;
if (isParentRenderFlexLayout() || isParentRenderGridLayout()) {
markNeedsLayout();
}
}