Option constructor

const Option(
  1. String name,
  2. int has_arg,
  3. List<int>? flag,
  4. int val,
)

Creates a new Option structure.

Implementation

const Option(this.name, this.has_arg, this.flag, this.val);