deputy method
CollectiveCellProperties<E, I>
deputy({
- required Cell bind,
- covariant TestCollective<
dynamic, Collective> ? test, - covariant MapObject? mapObject,
override
Creates a delegated properties instance with overrides.
Parameters:
- bind: Required parent Cell for binding
- test: Optional validation rule overrides
- map: Optional element transformation overrides
Implementation
@override
CollectiveCellProperties<E,I> deputy({required Cell bind, covariant TestCollective? test, covariant MapObject? mapObject}) {
return _CollectivePropertiesDeputy<E,I>(this, bind: bind, test: test, mapObject: mapObject);
}