CaptureInfo constructor
CaptureInfo({
- required int tabId,
- required TabCaptureState status,
- 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,
);