freeze property Null safety
When true the texture will not be updated with new frames.
Implementation
bool get freeze => _freeze;Implementation
set freeze(bool value) {
  assert(value != null);
  if (value != _freeze) {
    _freeze = value;
    markNeedsPaint();
  }
}