desktopCapture property

JSDesktopCapture get desktopCapture

Desktop Capture API that can be used to capture content of screen, individual windows or tabs.

Implementation

JSDesktopCapture get desktopCapture {
  var desktopCaptureNullable = this.desktopCaptureNullable;
  if (desktopCaptureNullable == null) {
    throw ApiNotAvailableException('chrome.desktopCapture');
  }
  return desktopCaptureNullable;
}