positionRight method

Positioned positionRight({
  1. Key? key,
  2. required double right,
  3. double? width,
  4. double? height,
})

Implementation

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