BasePad constructor
BasePad({
- Dimensions? dimensions,
- bool? relative,
- bool? regionRelative,
- CompassGravity? gravityValue,
- dynamic offsetXValue,
- dynamic offsetYValue,
- Background? backgroundValue,
Implementation
BasePad(
{super.dimensions,
super.relative,
super.regionRelative,
CompassGravity? gravityValue,
dynamic offsetXValue,
dynamic offsetYValue,
Background? backgroundValue}) {
if (gravityValue != null) {
gravity(gravityValue);
}
offsetX(offsetXValue);
offsetY(offsetYValue);
if (backgroundValue != null) {
background(backgroundValue);
}
}