Sample constructor

const Sample({
  1. required int id,
  2. required String kind,
  3. required String label,
  4. required String type,
  5. required String owner,
  6. required String scope,
  7. required int updatedAt,
  8. required String note,
  9. String? status,
  10. String? value,
  11. int? listeners,
  12. int? dependencies,
  13. int? writes,
  14. int? runs,
  15. int? lastDurationUs,
  16. String? operation,
  17. List<CollectionDelta>? deltas,
  18. int? mutations,
})

Implementation

const Sample({
  required this.id,
  required this.kind,
  required this.label,
  required this.type,
  required this.owner,
  required this.scope,
  required this.updatedAt,
  required this.note,
  this.status,
  this.value,
  this.listeners,
  this.dependencies,
  this.writes,
  this.runs,
  this.lastDurationUs,
  this.operation,
  this.deltas,
  this.mutations,
});