IntervalBlock constructor

IntervalBlock({
  1. required int iterations,
  2. required List<IntervalStep> steps,
  3. required IntervalBlockType type,
})

Creates a new interval block

Implementation

IntervalBlock({
  required this.iterations,
  required this.steps,
  required this.type,
});