Agent constructor

Agent({
  1. String? agentId,
  2. Map<String, Map<String, Object?>>? attributes,
  3. Card? card,
  4. String? createTime,
  5. String? description,
  6. String? displayName,
  7. String? location,
  8. String? name,
  9. List<Protocol>? protocols,
  10. List<A2ASkill>? skills,
  11. String? uid,
  12. String? updateTime,
  13. String? version,
})

Implementation

Agent({
  this.agentId,
  this.attributes,
  this.card,
  this.createTime,
  this.description,
  this.displayName,
  this.location,
  this.name,
  this.protocols,
  this.skills,
  this.uid,
  this.updateTime,
  this.version,
});