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