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