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