PinCodeText constructor

PinCodeText({
  1. Key? key,
  2. ValueChanged<String>? onChanged,
  3. double lineHigh = 100.0,
  4. double boxSize = 35,
  5. bool autofocus = true,
  6. int pinLength = 6,
  7. bool alwaysShowKeyBoard = false,
  8. EdgeInsets pinBoxOuterPadding = const EdgeInsets.symmetric(horizontal: 4),
  9. TextEditingController? controller,
})

Implementation

PinCodeText({
  Key? key,
  this.onChanged,
  this.lineHigh = 100.0,
  this.boxSize = 35,
  this.autofocus = true,
  this.pinLength = 6,
  this.alwaysShowKeyBoard = false,
  this.pinBoxOuterPadding = const EdgeInsets.symmetric(horizontal: 4),
  this.controller
}) : super(key: key);