AgentCard constructor

AgentCard({
  1. String? description,
  2. String? name,
  3. List<AgentSkill>? skills,
  4. List<AgentInterface>? supportedInterfaces,
  5. String? version,
})

Implementation

AgentCard({
  this.description,
  this.name,
  this.skills,
  this.supportedInterfaces,
  this.version,
});