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