AngleOptions constructor

const AngleOptions({
  1. required int width,
  2. required int height,
  3. required double dpr,
  4. bool alpha = false,
  5. bool antialias = false,
  6. bool customRenderer = true,
  7. bool useSurfaceProducer = false,
})

Implementation

const AngleOptions({
  required this.width,
  required this.height,
  required this.dpr,
  this.alpha = false,
  this.antialias = false,
  this.customRenderer = true,
  this.useSurfaceProducer = false,
});