CustomTextField constructor
const
CustomTextField({
- Key? key,
- required InputField value,
- void onChanged()?,
- InputDecoration? decoration,
- bool obscureText = false,
Implementation
const CustomTextField(
{Key? key,
required this.value,
this.onChanged,
this.decoration,
this.obscureText = false})
: super(key: key);