quantize property
bool
get
quantize
Whether frames are quantized to desired frame rate or floating based on runtime speed.
Implementation
bool get quantize => _quantize;
set
quantize
(bool value)
Change the _quantize
field value.
quantizeChanged will be invoked only if the field's value has changed.
Implementation
set quantize(bool value) {
if (_quantize == value) {
return;
}
bool from = _quantize;
_quantize = value;
if (hasValidated) {
quantizeChanged(from, value);
}
}