FormBuilderStepper constructor

FormBuilderStepper({Key key, @required String attribute, double initialValue, List<FormFieldValidator> validators: const [], bool readOnly: false, InputDecoration decoration: const InputDecoration(), double step, double min, double max, double size: 24.0, ValueChanged onChanged ValueTransformer valueTransformer, FormFieldSetter onSaved })

Implementation

FormBuilderStepper({
  Key key,
  @required this.attribute,
  this.initialValue,
  this.validators = const [],
  this.readOnly = false,
  this.decoration = const InputDecoration(),
  this.step,
  this.min,
  this.max,
  this.size = 24.0,
  this.onChanged,
  this.valueTransformer,
  this.onSaved,
}) : super(key: key);