BaseFill constructor Null safety

BaseFill(
  1. {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);
}