deputy method
CollectiveSet<E>
deputy({
- covariant TestCollective<
dynamic, Collective> ? test, - covariant MapObject? mapObject,
override
Creates a delegated view with modified behavior.
Parameters:
- test: Optional override validation rules
- map: Optional element transformations
Implementation
@override
CollectiveSet<E> deputy({covariant TestCollective? test, covariant MapObject? mapObject}) {
return _collective.deputy(test: test, mapObject: mapObject);
}