CustomInputField constructor

const CustomInputField({
  1. Key? key,
  2. required String label,
  3. required String hint,
  4. required String? validate(
    1. String? value
    )?,
  5. required int maxLines,
  6. required TextEditingController controller,
  7. bool readOnly = false,
})

Implementation

const CustomInputField(
    {Key? key,
    required this.label,
    required this.hint,
    required this.validate,
    required this.maxLines,
    required this.controller,
    this.readOnly = false})
    : super(key: key);