ClientListeningToRoute constructor

ClientListeningToRoute({
  1. required String route,
  2. required dynamic params,
  3. required StreamController<NewDataForListener> streamBroadcastController,
  4. required String hash,
  5. required String listenId,
  6. String? clientRequestId,
})

Implementation

ClientListeningToRoute(
    {required this.route,
      required this.params,
      required this.streamBroadcastController,
      required this.hash,
      required this.listenId,
      this.clientRequestId,
    }
);