Option constructor

Option({
  1. required String title,
  2. required bool optionValue,
  3. required String description,
  4. bool isDebugOnly = false,
})

Implementation

Option(
    {required this.title,
    required this.optionValue,
    required this.description,
    this.isDebugOnly = false});