Agent constructor

Agent({
  1. required String? id,
  2. String? name,
  3. String? description,
  4. String? type,
  5. bool? isActive,
  6. bool? isDeployed,
  7. bool? is_published,
  8. bool? is_featured,
  9. required AgentConfigs? agentConfigs,
})

Implementation

Agent({
  required this.id,
  this.name,
  this.description,
  this.type,
  this.isActive,
  this.isDeployed,
  this.is_published,
  this.is_featured,
  required    this.agentConfigs,

});