freeze property

bool freeze

When true the texture will not be updated with new frames.

Implementation

bool get freeze => _freeze;
void freeze=(bool value)

Implementation

set freeze(bool value) {
  if (value != _freeze) {
    _freeze = value;
    markNeedsPaint();
  }
}