AIModel constructor

const AIModel({
  1. required String id,
  2. String? description,
  3. String object = 'model',
  4. String? ownedBy,
})

Implementation

const AIModel({
  required this.id,
  this.description,
  this.object = 'model',
  this.ownedBy,
});