Model constructor

Model({
  1. List<Operation>? activeOperations,
  2. String? createTime,
  3. String? displayName,
  4. String? etag,
  5. String? modelHash,
  6. String? name,
  7. ModelState? state,
  8. List<String>? tags,
  9. TfLiteModel? tfliteModel,
  10. String? updateTime,
})

Implementation

Model({
  this.activeOperations,
  this.createTime,
  this.displayName,
  this.etag,
  this.modelHash,
  this.name,
  this.state,
  this.tags,
  this.tfliteModel,
  this.updateTime,
});