KYCTextBox constructor

const KYCTextBox({
  1. Key? key,
  2. Key? fieldKey,
  3. required FormProps formProps,
  4. required StyleProps styleProps,
  5. bool showVerifyButton = false,
  6. ReactiveFormFieldCallback<String>? onChange,
  7. required ButtonProps buttonProps,
  8. required bool isOffline,
  9. String? assetPath,
  10. required ValueChanged onSuccess,
  11. required ValueChanged onError,
  12. String? validationPattern,
  13. required String apiUrl,
  14. required VerificationType verificationType,
  15. String? kycNumber,
})

Implementation

const KYCTextBox({super.key,
  this.fieldKey,
  required this.formProps,
  required this.styleProps,
  this.showVerifyButton = false,
  this.onChange,
  required this.buttonProps,
  required this.isOffline,
  this.assetPath,
  required this.onSuccess,
  required this.onError,
  this.validationPattern,
  required this.apiUrl,
  required this.verificationType,
  this.kycNumber,
});