UiToolData constructor

UiToolData({
  1. required String toolType,
  2. required String toolId,
  3. required String toolName,
  4. required String toolCallbackId,
  5. required String message,
  6. required ToolParameterType? credentialPropertyType,
  7. required List<String> scopes,
  8. required Map<String, dynamic> toolRequestData,
})

Implementation

UiToolData({
  required this.toolType,
  required this.toolId,
  required this.toolName,
  required this.toolCallbackId,
  required this.message,
  required this.credentialPropertyType,
  required this.scopes,
  required this.toolRequestData,
});