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