SetAction<E> constructor

const SetAction<E>(
  1. Set<E> _set(),
  2. void add(
    1. E element
    ),
  3. void addAll(
    1. Set<E>
    ),
  4. void replace(
    1. Set<E>
    ),
  5. void toggle(
    1. E element
    ),
  6. void remove(
    1. E element
    ),
  7. VoidCallback reset,
)

Implementation

const SetAction(
  this._set,
  this.add,
  this.addAll,
  this.replace,
  this.toggle,
  this.remove,
  this.reset,
);