bottom static method
Implementation
static Widget bottom({
required Widget child,
double? left = 0,
double? right = 0,
double? top,
double? bottom = 0,
double? width,
double? height,
}) {
return Positioned(
top: top,
left: left,
right: right,
bottom: bottom,
width: width,
height: height,
child: child,
);
}