Attribute constructor

const Attribute({
  1. required String tag,
  2. required String value,
})

Implementation

const Attribute({
  required this.tag,
  required this.value
});