CollectiveSet<E>.empty constructor
CollectiveSet<E>.empty ({
- Cell? bind,
- TestCollective<
dynamic, Collective> test, - 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;