BASFInputField constructor

const BASFInputField({
  1. TextEditingController? controller,
  2. void onChanged(
    1. String
    )?,
  3. IconData? prefixIcon,
  4. String? hintText,
  5. String? labelText = '',
  6. String? initialText = '',
  7. String? validation(
    1. String
    )?,
  8. bool? initialValidation = true,
  9. bool? disabled = false,
  10. bool? withoutClear = false,
  11. bool? obscureText = false,
  12. TextInputType? inputType,
  13. EdgeInsets? padding,
  14. Key? key,
})

Implementation

const BASFInputField({
  this.controller,
  this.onChanged,
  this.prefixIcon,
  this.hintText,
  this.labelText = '',
  this.initialText = '',
  this.validation,
  this.initialValidation = true,
  this.disabled = false,
  this.withoutClear = false,
  this.obscureText = false,
  this.inputType,
  this.padding,
  Key? key,
}) : super(key: key);