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