updateVideoTexture method
Implementation
void updateVideoTexture(VideoTexture texture) {
  final frame = info.render["frame"];
  // Check the last frame we updated the VideoTexture
  if (_videoTextures[texture] != frame) {
    _videoTextures[texture] = frame;
    texture.update();
  }
}