SubscriptionHandler constructor

SubscriptionHandler(
  1. DdpClient ddpClient,
  2. String subId,
  3. String subName,
  4. List args,
)

Implementation

SubscriptionHandler(this.ddpClient, this.subId, this.subName, this.args) {
  _readyStream = _readyStreamController.stream.asBroadcastStream();
  _readyStreamController.sink.add(false);
}