AngleOptions constructor

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,
})

Implementation

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