ModulaPinCodeInput constructor

const ModulaPinCodeInput({
  1. Key? key,
  2. int length = 6,
  3. bool obscureText = false,
  4. ValueChanged<String>? onCompleted,
  5. TextStyle? textStyle,
  6. InputDecoration? decoration,
  7. String obscureCharacter = '•',
})

Implementation

const ModulaPinCodeInput({
  super.key,
  this.length = 6,
  this.obscureText = false,
  this.onCompleted,
  this.textStyle,
  this.decoration,
  this.obscureCharacter = '•',
});