positioned method
Wraps widget with Positioned (for Stack)
Implementation
Widget positioned({
double? top,
double? bottom,
double? left,
double? right,
double? width,
double? height,
}) {
return Positioned(
top: top,
bottom: bottom,
left: left,
right: right,
width: width,
height: height,
child: this,
);
}