Delay constructor

const Delay({
  1. Duration? fixedDelay,
  2. Percent? percentage,
  3. int? percent,
})

The main constructor.

Implementation

const Delay({
  this.fixedDelay,
  this.percentage,
  this.percent,
});