CustomInput constructor

const CustomInput({
  1. Key? key,
  2. required dynamic onChanged(
    1. String
    ),
  3. String? hintText,
})

Implementation

const CustomInput({super.key, required this.onChanged, this.hintText});