FirePort<T> constructor

const FirePort<T>({
  1. ToFire<T>? toFire,
  2. FromFire<T>? fromFire,
})

Implementation

const FirePort({
  ToFire<T>? toFire,
  FromFire<T>? fromFire,
})  : _toFire = toFire,
      _fromFire = fromFire;