bottom method

Widget bottom({
  1. double? widthFactor,
  2. double? heightFactor,
  3. Key? key,
})

Implementation

Widget bottom({
  double? widthFactor,
  double? heightFactor,
  Key? key,
}) {
  return Align(
    alignment: Alignment.bottomCenter,
    widthFactor: widthFactor,
    heightFactor: heightFactor,
    child: this,
    key: key,
  );
}