CappOption constructor

CappOption({
  1. required String name,
  2. String description = '',
  3. String value = '',
  4. String shortName = '',
})

The constructor of the CappOption class. The name is the name of the option. The description is the description of the option. The value is the value of the option. The shortName is the short name of the option.

Implementation

CappOption(
    {required this.name,
    this.description = '',
    this.value = '',
    this.shortName = ''});