FormBuilderRadio constructor

FormBuilderRadio({Key key, @required String attribute, @required List<FormBuilderFieldOption> options, dynamic initialValue, List<FormFieldValidator> validators: const [], bool readOnly: false, InputDecoration decoration: const InputDecoration(), ValueChanged onChanged ValueTransformer valueTransformer, bool leadingInput: false, MaterialTapTargetSize materialTapTargetSize, Color activeColor, FormFieldSetter onSaved })

Implementation

FormBuilderRadio({
  Key key,
  @required this.attribute,
  @required this.options,
  this.initialValue,
  this.validators = const [],
  this.readOnly = false,
  this.decoration = const InputDecoration(),
  this.onChanged,
  this.valueTransformer,
  this.leadingInput = false,
  this.materialTapTargetSize,
  this.activeColor,
  this.onSaved,
}) : super(key: key);