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