Tag constructor

Tag({
  1. String? type,
  2. String? tag,
})

Returns a new Tag instance.

Implementation

Tag({
  this.type,
  this.tag,
});