ProgressState constructor

ProgressState({
  1. required int current,
  2. required void clear(),
  3. required void increase(
    1. int
    ),
  4. required void Function() done(),
})

Constructs a ProgressState with it's all properties.

Implementation

ProgressState({
  required this.current,
  required this.clear,
  required this.increase,
  required this.done,
});