required static method

RequiredRepeatableOption<double> required(
  1. String name, {
  2. double? min,
  3. double? max,
  4. double? step,
  5. String? short,
  6. String? description,
  7. bool hidden = false,
})

Implementation

static RequiredRepeatableOption<double> required(
  String name, {
  double? min,
  double? max,
  double? step,
  String? short,
  String? description,
  bool hidden = false,
}) => _RequiredRepeatableDoubleOption(
  name,
  min: min,
  max: max,
  step: step,
  short: short,
  description: description,
  hidden: hidden,
);