LiquidSearch constructor

LiquidSearch({
  1. required String fieldName,
  2. required String labelText,
  3. required double fieldWidth,
  4. double fieldHeight = 65,
  5. dynamic onSaved(
    1. dynamic
    )?,
  6. dynamic onChanged(
    1. dynamic
    )?,
  7. Icon? prefixIcon,
  8. Icon? suffixIcon,
  9. FocusNode? focusNode,
  10. OutlineInputBorder? border,
  11. Key? key,
})

Implementation

LiquidSearch(
    {required this.fieldName,
    required this.labelText,
    required this.fieldWidth,
    this.fieldHeight = 65,
    this.onSaved,
    this.onChanged,
    this.prefixIcon,
    this.suffixIcon,
    this.focusNode,
    this.border,
    this.key});