ScreenshotConfig constructor

const ScreenshotConfig({
  1. double pixelRatio = 3.0,
  2. ScreenshotFormat format = ScreenshotFormat.png,
  3. ScreenshotResultType resultType = ScreenshotResultType.base64,
  4. String? fileName,
  5. bool shouldShowDebugLogs = false,
  6. Duration? captureDelay,
})

Implementation

const ScreenshotConfig({
  this.pixelRatio = 3.0,
  this.format = ScreenshotFormat.png,
  this.resultType = ScreenshotResultType.base64,
  this.fileName,
  this.shouldShowDebugLogs = false,
  this.captureDelay,
});