positionedFill method
Implementation
Positioned positionedFill({
double? left = 0,
double? top = 0,
double? right = 0,
double? bottom = 0,
}) {
return Positioned.fill(child: this, left: left, top: top, right: right, bottom: bottom);
}
Positioned positionedFill({
double? left = 0,
double? top = 0,
double? right = 0,
double? bottom = 0,
}) {
return Positioned.fill(child: this, left: left, top: top, right: right, bottom: bottom);
}