AdwTextField constructor

const AdwTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. TextInputType? keyboardType,
  4. dynamic onChanged(
    1. String
    )?,
  5. IconData? icon,
  6. IconData? prefixIcon,
  7. ValueChanged<String>? onSubmitted,
  8. String? initialValue,
  9. bool autofocus = false,
})

Implementation

const AdwTextField({
  Key? key,
  this.controller,
  this.keyboardType,
  this.onChanged,
  this.icon,
  this.prefixIcon,
  this.onSubmitted,
  this.initialValue,
  this.autofocus = false,
}) : super(key: key);