Favorite constructor

Favorite({
  1. String? favoriteId,
  2. required String assetId,
  3. String? userId,
  4. required String companyId,
  5. String? notes,
  6. String? category,
  7. required String priority,
  8. String? dateCreated,
  9. String? lastUpdated,
  10. String? active,
})

Returns a new Favorite instance.

Implementation

Favorite({
  this.favoriteId,
  required this.assetId,
  this.userId,
  required this.companyId,
  this.notes,
  this.category,
  required this.priority,
  this.dateCreated,
  this.lastUpdated,
  this.active,
});