Spec<I, O> constructor

const Spec<I, O>(
  1. String procedure,
  2. StreamType streamType,
  3. I inputFactory(),
  4. O outputFactory(), {
  5. Idempotency? idempotency,
})

Implementation

const Spec(
  this.procedure,
  this.streamType,
  this.inputFactory,
  this.outputFactory, {
  this.idempotency,
});