AgentInfo constructor

const AgentInfo({
  1. required String agentType,
  2. required String source,
  3. required int tokens,
})

Implementation

const AgentInfo({
  required this.agentType,
  required this.source,
  required this.tokens,
});