yOffset property

double yOffset

Implementation

double get yOffset => _getAttribute<double>(kYOffset, 0);
void yOffset=(double? x)

The percentage of the document's height the zoomed document should be offset by vertically.

pass null to remove key from attributes

Implementation

set yOffset(double? x) =>
    (x == null) ? _attributes.remove(kYOffset) : _attributes[kYOffset] = x;