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