alignTopEnd property

Widget get alignTopEnd

Aligns the widget to the top end corner of its parent.

Example:

Text("Top End").alignTopEnd;

Implementation

Widget get alignTopEnd => Align(
      alignment: AlignmentDirectional.topEnd,
      child: this,
    );