Tag constructor

Tag({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? category,
  5. String? name,
  6. String? description,
  7. TagColor? color,
  8. bool? important,
  9. TagStatus? status,
  10. List<int>? allowedPositions,
})

Implementation

Tag({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.category,
  this.name,
  this.description,
  this.color,
  this.important,
  this.status,
  this.allowedPositions,
});