KYCInputField constructor

const KYCInputField({
  1. Key? key,
  2. required FormProps formProps,
  3. required StyleProps styleProps,
  4. required InputValidationManager validationManager,
  5. String? validationPatternErrorMessage,
  6. bool disabled = false,
  7. TextInputType keyboardType = TextInputType.text,
  8. ReactiveFormFieldCallback<String>? onChange,
  9. RegExp? validationPattern,
  10. bool obscureText = false,
  11. bool maskAadhaar = false,
})

Implementation

const KYCInputField({
  super.key,
  required this.formProps,
  required this.styleProps,
  required this.validationManager,
  this.validationPatternErrorMessage,
  this.disabled = false,
  this.keyboardType = TextInputType.text,
  this.onChange,
  this.validationPattern,
  this.obscureText = false,
  this.maskAadhaar = false,
});