DynamicSize constructor

DynamicSize(
  1. double _height,
  2. double _width
)

Constructs a new DynamicSize object with the provided initial height and width values.

The DynamicSize object allows for dynamic sizing calculations based on the screen dimensions.

  • height: The initial height value used for dynamic sizing calculations.
  • width: The initial width value used for dynamic sizing calculations.

Implementation

DynamicSize(this._height, this._width);