alignBottom method

Widget alignBottom([
  1. double? breakpoint
])

Aligns the widget to the bottom center of its parent.

Implementation

Widget alignBottom([double? breakpoint]) => _apply(
      breakpoint,
      (w) => Align(
        alignment: Alignment.bottomCenter,
        child: w,
      ),
    );