fit property
int
get
fit
Fit type for the nested artboard's runtime artboard.
Implementation
int get fit => _fit;
set
fit
(int value)
Change the _fit field value.
fitChanged will be invoked only if the field's value has changed.
Implementation
set fit(int value) {
if (_fit == value) {
return;
}
int from = _fit;
_fit = value;
if (hasValidated) {
fitChanged(from, value);
}
}