listResourceTemplatesDirect method
Lists one page of resource templates through the direct JSON API.
Implementation
Future<McpStreamableResourceTemplateListPage> listResourceTemplatesDirect({
Object? id,
String? cursor,
String? protocolVersion,
Map<String, String> headers = const <String, String>{},
}) {
return listResourceTemplates(
id: id,
cursor: cursor,
directJson: true,
protocolVersion: protocolVersion,
headers: headers,
);
}