DebugOptions constructor

DebugOptions(
  1. {bool showBoundingBox = false,
  2. bool showViewPort = false,
  3. bool recordFrames = false,
  4. double resolutionFactor = 1.0,
  5. String fileName = '',
  6. String outPutDir = ''}
)

Implementation

DebugOptions({
  this.showBoundingBox = false,
  this.showViewPort = false,
  this.recordFrames = false,
  this.resolutionFactor = 1.0,
  this.fileName = '',
  this.outPutDir = '',
});