ConeBurst constructor

const ConeBurst({
  1. double angle = -pi / 2,
  2. double spread = pi / 4,
  3. double minSpeed = 100.0,
  4. double maxSpeed = 300.0,
})

Implementation

const ConeBurst({
  this.angle = -pi / 2,
  this.spread = pi / 4,
  this.minSpeed = 100.0,
  this.maxSpeed = 300.0,
});