ScreenCaptureParameters constructor

ScreenCaptureParameters({
  1. VideoDimensions? dimensions,
  2. int? frameRate,
  3. int? bitrate,
  4. bool? captureMouseCursor,
  5. bool? windowFocus,
  6. List<int>? excludeWindowList,
})

Constructs the ScreenCaptureParameters.

Implementation

ScreenCaptureParameters({
  this.dimensions,
  this.frameRate,
  this.bitrate,
  this.captureMouseCursor,
  this.windowFocus,
  this.excludeWindowList,
});