deputy method

  1. @override
CollectiveCellProperties<E, I> deputy({
  1. required Cell bind,
  2. covariant TestCollective<dynamic, Collective>? test,
  3. 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);
}