Tag constructor

Tag({
  1. String? key,
  2. String? value,
})

Implementation

Tag({
  this.key,
  this.value,
});