positionedFill method
Wraps this widget in a Positioned.fill with the given parameters.
Implementation
Widget positionedFill({
double? left,
double? top,
double? right,
double? bottom,
}) {
return Positioned.fill(
left: left,
top: top,
right: right,
bottom: bottom,
child: this,
);
}