CaptureInfo constructor

CaptureInfo({
  1. required int tabId,
  2. required TabCaptureState status,
  3. required bool fullscreen,
})

Implementation

CaptureInfo({
  /// The id of the tab whose status changed.
  required int tabId,

  /// The new capture status of the tab.
  required TabCaptureState status,

  /// Whether an element in the tab being captured is in fullscreen mode.
  required bool fullscreen,
}) : _wrapped = $js.CaptureInfo(
        tabId: tabId,
        status: status.toJS,
        fullscreen: fullscreen,
      );