captureAVPlayer property

bool captureAVPlayer

Controls Video players capture. If set to true, Bugsee will capture video in both inline and standalone video players. May incur some performance penalty.

Implementation

bool get captureAVPlayer =>
    tryCast(this["CaptureAVPlayer"], constOptionCaptureAVPlayer);
void captureAVPlayer=(bool value)

Implementation

set captureAVPlayer(bool value) {
  this["CaptureAVPlayer"] = value;
}