NameValue constructor

NameValue({
  1. String? name,
  2. String? value,
})

Implementation

NameValue({
  this.name,
  this.value
});