BaseFill constructor Null safety
- {dynamic super}
Implementation
BaseFill(
{super.dimensions,
super.relative,
super.regionRelative,
Gravity? gravityValue,
dynamic xValue,
dynamic yValue}) {
if (gravityValue != null) {
gravity(gravityValue);
}
x(xValue);
y(yValue);
}