FieldSetting constructor

FieldSetting({
  1. required String fieldKey,
  2. FieldInputType inputType = FieldInputType.normal,
  3. InputDecoration? inputDecoration,
  4. List<String>? selectOptions,
  5. AutocompleteSource? autocompleteSource,
})

Implementation

FieldSetting({
  required this.fieldKey,
  this.inputType = FieldInputType.normal,
  this.inputDecoration,
  this.selectOptions,
  this.autocompleteSource,
});