Option constructor

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

Implementation

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