CounterActions constructor

CounterActions(
  1. int getter(),
  2. void inc([
    1. int?
    ]),
  3. void dec([
    1. int?
    ]),
  4. void setter(
    1. int
    ),
  5. void reset([
    1. int?
    ]),
  6. int? _min(),
  7. int? _max(),
)

Implementation

CounterActions(
  this.getter,
  this.inc,
  this.dec,
  this.setter,
  this.reset,
  this._min,
  this._max,
);