OTPInput constructor

const OTPInput({
  1. Key? key,
  2. String? hintText,
  3. dynamic onSaved(
    1. String?
    )?,
  4. dynamic onChanged(
    1. String
    )?,
  5. bool obscureText = false,
})

Implementation

const OTPInput({
  Key? key,
  this.hintText,
  this.onSaved,
  this.onChanged,
  this.obscureText = false,
}) : super(key: key);