alignEnd method

Widget alignEnd()

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

Implementation

Widget alignEnd() => Align(
      alignment: AlignmentDirectional.centerEnd,
      child: this,
    );