AgentMetadata.fromJson constructor

AgentMetadata.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AgentMetadata.fromJson(Map<String, dynamic> json) {
  return AgentMetadata(
    agentType: json['agentType'] as String,
    worktreePath: json['worktreePath'] as String?,
    description: json['description'] as String?,
  );
}