deputy method
CollectiveValue<V>
deputy({
- covariant TestCollective<
dynamic, Collective> ? test, - covariant MapObject? mapObject,
override
Creates an deputy for this CollectiveValue.
Parameters:
test
: Additional validation rulesmapObject
: Value transformations to apply
Implementation
@override
CollectiveValue<V> deputy({covariant TestCollective? test, covariant MapObject? mapObject}) {
return CollectiveValueDeputy<V>._(this, test: test, mapObject: mapObject);
}