positionBottom method
Implementation
Positioned positionBottom({
Key? key,
required double bottom,
double? width,
double? height,
}) =>
Positioned(
key: key,
bottom: bottom,
width: width,
height: height,
child: this,
);