FavoritesUpdate constructor

FavoritesUpdate({
  1. String? assetId,
  2. String? userId,
  3. String? companyId,
  4. String? notes,
  5. String? category,
  6. int? priority,
})

Returns a new FavoritesUpdate instance.

Implementation

FavoritesUpdate({
  this.assetId,
  this.userId,
  this.companyId,
  this.notes,
  this.category,
  this.priority,
});