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