Barrage constructor

const Barrage({
  1. Key? key,
  2. int showCount = 10,
  3. double padding = 5,
  4. int randomOffset = 0,
  5. double height = 0,
})

Implementation

const Barrage(
    {Key? key,
    this.showCount = 10,
    this.padding = 5,
    this.randomOffset = 0,
    this.height = 0})
    : super(key: key);