WiredInput constructor

const WiredInput({
  1. Key? key,
  2. TextEditingController? controller,
  3. TextStyle? style,
  4. String? labelText,
  5. TextStyle? labelStyle,
  6. String? hintText,
  7. TextStyle? hintStyle,
  8. void onChanged(
    1. String
    )?,
})

Implementation

const WiredInput({
  Key? key,
  this.controller,
  this.style,
  this.labelText,
  this.labelStyle,
  this.hintText,
  this.hintStyle,
  this.onChanged,
}) : super(key: key);