NicePinCodeInput constructor

const NicePinCodeInput({
  1. Key? key,
  2. required int length,
  3. ValueChanged<String>? onCompleted,
  4. ValueChanged<String>? onChanged,
  5. String? label,
  6. bool obscure = false,
  7. bool autoFocus = true,
  8. double boxSize = 48,
})

Implementation

const NicePinCodeInput({
  super.key,
  required this.length,
  this.onCompleted,
  this.onChanged,
  this.label,
  this.obscure = false,
  this.autoFocus = true,
  this.boxSize = 48,
});