alignEnd method
Aligns the widget to the end (right) of its parent.
Implementation
Widget alignEnd([double? breakpoint]) => _apply(
breakpoint,
(w) => Align(
alignment: AlignmentDirectional.centerEnd,
child: w,
),
);