McpMetadataKey constructor

const McpMetadataKey({
  1. required String id,
  2. required McpWidgetType widgetType,
  3. String? description,
  4. String? screen,
  5. List<String>? tags,
  6. Map<String, dynamic>? customMetadata,
})

Implementation

const McpMetadataKey({
  required this.id,
  required this.widgetType,
  this.description,
  this.screen,
  this.tags,
  this.customMetadata,
}) : super.empty();