position method
Implementation
Widget position({double? left, double? top, double? right, double? bottom, double? width, double? height}) => Positioned(
left: left,
top: top,
right: right,
bottom: bottom,
width: width,
height: height,
child: this,
);