sizeY property

double? sizeY

🧮 Vertical size in logical pixels to provide as space for this IconToo.

Unlike an Icon.size this double only represents the resolution of in one axis, Y.

Gets _trueSize.height if initialized, otherwise gets _sizeY if assigned. May be null.

Rendered IconToo defaults to the current IconTheme.of size, if any, itself defaulting to 24.0.

Implementation

double? get sizeY => _trueSize?.height ?? _sizeY;