Dispatcher constructor

Dispatcher({
  1. String? id,
  2. String? type,
})

Returns a new Dispatcher instance.

Implementation

Dispatcher({
  this.id,
  this.type,
});