StompSubscription constructor
StompSubscription({})
Implementation
StompSubscription({
required this.id,
required this.destination,
required this.ackMode,
Map<String, String>? headers,
}) : headers = headers ?? <String, String>{},
_messageController = StreamController<StompMessage>.broadcast(),
_unsubscribeController = StreamController<void>.broadcast();