Tag constructor

Tag({
  1. int? id,
  2. String? name,
})

Implementation

Tag({
  this.id,
  this.name,
});