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