LiquidDropdown constructor

LiquidDropdown({
  1. required String fieldName,
  2. required String labelText,
  3. required String initValue,
  4. required double fieldWidth,
  5. required List<String> values,
  6. dynamic onSaved(
    1. dynamic
    )?,
  7. dynamic onChanged(
    1. dynamic
    )?,
  8. required bool isEdit,
  9. OutlineInputBorder? border,
  10. Key? key,
})

Implementation

LiquidDropdown(
    {required this.fieldName,
    required this.labelText,
    required this.initValue,
    required this.fieldWidth,
    required this.values,
    this.onSaved,
    this.onChanged,
    required this.isEdit,
    this.border,
    this.key});