ShareModels
Category: Share
Source: share_models.dart
Enums
ShareEntryKind
| Value | Description |
|---|---|
user | |
assistant | |
toolCall | |
toolResult | |
subagentGroup | |
subagentMessage |
Classes
ShareEntry
Constructor
dart
const ShareEntry({
required this.index,
required this.kind,
required this.text,
this.toolName,
this.toolArguments,
this.subagentId,
this.nestingLevel = 0,
this.children = const [],
})Properties
| Property | Type | Description |
|---|---|---|
index | int | |
kind | ShareEntryKind | |
text | String | |
toolName | String? | |
toolArguments | Map<String, dynamic>? | |
subagentId | String? | |
nestingLevel | int | |
children | List<ShareEntry> |
ShareTranscript
Constructor
dart
const ShareTranscript({required this.entries})Properties
| Property | Type | Description |
|---|---|---|
entries | List<ShareEntry> |