alignEnd method

Widget alignEnd([
  1. double? breakpoint
])

Aligns the widget to the end (right) of its parent.

Implementation

Widget alignEnd([double? breakpoint]) => _apply(
      breakpoint,
      (w) => Align(
        alignment: AlignmentDirectional.centerEnd,
        child: w,
      ),
    );