PlanOption constructor

const PlanOption({
  1. PlanProfile? defaultValue,
})

Implementation

const PlanOption({final PlanProfile? defaultValue})
  : super(
      argName: 'plan',
      helpText: 'Selects the plan to use.',
      enumParser: const EnumParser(PlanProfile.values),
      defaultsTo: defaultValue,
    );