CollectiveSet<E>.empty constructor

CollectiveSet<E>.empty({
  1. Cell? bind,
  2. TestCollective<dynamic, Collective> test,
  3. bool identitySet,
})

Creates an empty CollectiveSet.

Parameters:

  • bind: Optional parent Cell to link with
  • test: Validation rules (defaults to always passing)
  • identitySet: If true, uses identity comparison (default: false)

Implementation

factory CollectiveSet.empty({
  Cell? bind,
  TestCollective test,
  bool identitySet
}) = _CollectiveSet<E>.empty;