deputy method

  1. @override
CollectiveQueue<E> deputy({
  1. covariant TestCollective<dynamic, Collective>? test,
  2. covariant MapObject? mapObject,
})
override

Creates a delegated view with modified behavior.

Parameters:

  • test: Optional override validation rules
  • map: Optional element transformations

Implementation

@override
CollectiveQueue<E> deputy({covariant TestCollective? test, covariant MapObject? mapObject}) {
  return _collective.deputy(test: test, mapObject: mapObject);
}