CustomTextField constructor

const CustomTextField({
  1. Key? key,
  2. required InputField value,
  3. void onChanged(
    1. String
    )?,
  4. InputDecoration? decoration,
  5. bool obscureText = false,
})

Implementation

const CustomTextField(
    {Key? key,
    required this.value,
    this.onChanged,
    this.decoration,
    this.obscureText = false})
    : super(key: key);