Option constructor

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

Implementation

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