avaliableSpace property
double
get
avaliableSpace
Gets the available height for the sheet in pixels.
Implementation
double get avaliableSpace => _avaliableSpace;
set
avaliableSpace
(double value)
Sets the available height for the sheet and updates the size flag.
value: The available height in pixels. Must be greater than0.
Implementation
set avaliableSpace(double value) {
if (value > 0) {
_avaliableSpace = value;
_hasSizes = true;
}
}