ModelInfo constructor

const ModelInfo({
  1. required String id,
  2. required String name,
  3. required int category,
  4. required int format,
  5. required int framework,
  6. required int source,
  7. required int sizeBytes,
  8. String? downloadURL,
  9. String? localPath,
  10. String? version,
})

Implementation

const ModelInfo({
  required this.id,
  required this.name,
  required this.category,
  required this.format,
  required this.framework,
  required this.source,
  required this.sizeBytes,
  this.downloadURL,
  this.localPath,
  this.version,
});