listWampSubscriptionsDirect method

Future<McpStreamableWampMetaCallResult> listWampSubscriptionsDirect({
  1. Object? id,
  2. String? protocolVersion,
  3. Map<String, String> headers = const <String, String>{},
})

Implementation

Future<McpStreamableWampMetaCallResult> listWampSubscriptionsDirect({
  Object? id,
  String? protocolVersion,
  Map<String, String> headers = const <String, String>{},
}) {
  return listWampSubscriptions(
    id: id,
    directJson: true,
    protocolVersion: protocolVersion,
    headers: headers,
  );
}