Tag constructor

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

Implementation

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