GlareBox constructor

const GlareBox({
  1. double? x,
  2. double? y,
  3. double? width,
  4. double? height,
})

Implementation

const GlareBox({
  this.x,
  this.y,
  this.width,
  this.height,
});