VxPinView constructor

const VxPinView({
  1. Key? key,
  2. double size = 40,
  3. Color? contentColor,
  4. Color? color,
  5. double radius = 3,
  6. int count = 6,
  7. VxPinBorderType type = VxPinBorderType.round,
  8. double space = 8,
  9. bool obscureText = true,
  10. bool fill = false,
  11. TextInputType? keyboardType,
  12. TextInputAction? textInputAction,
  13. ValueChanged<String>? onChanged,
  14. VoidCallback? onEditingComplete,
  15. ValueChanged<String>? onSubmitted,
  16. FocusNode? focusNode,
})

Implementation

const VxPinView({
  super.key,
  this.size = 40,
  this.contentColor,
  this.color,
  this.radius = 3,
  this.count = 6,
  this.type = VxPinBorderType.round,
  this.space = 8,
  this.obscureText = true,
  this.fill = false,
  this.keyboardType,
  this.textInputAction,
  this.onChanged,
  this.onEditingComplete,
  this.onSubmitted,
  this.focusNode,
}) : assert(count > 0);