UiToolMessage constructor

UiToolMessage({
  1. required String id,
  2. required UiToolType type,
  3. required UiToolData data,
  4. required String assistantName,
  5. String? imageUuid,
  6. String? chatBotId,
  7. String? marketPlaceId,
  8. required String queryGroupId,
})

Implementation

UiToolMessage({
  required this.id,
  required this.type,
  required this.data,
  required this.assistantName,
  this.imageUuid,
  this.chatBotId,
  this.marketPlaceId,
  required this.queryGroupId,
});