ORSet<T> constructor

const ORSet<T>({
  1. Map<T, Set<String>>? addSet,
  2. Map<T, Set<String>>? removeSet,
})

Implementation

const ORSet({
  Map<T, Set<String>>? addSet,
  Map<T, Set<String>>? removeSet,
})  : _addSet = addSet ?? const {},
      _removeSet = removeSet ?? const {};