bottom method

Widget bottom()

Aligns this widget to the bottom.

This is equivalent to wrapping this widget with an Align widget with Alignment.bottomCenter.

Implementation

Widget bottom() => Align(alignment: Alignment.bottomCenter, child: this);