VxPinView constructor
const
VxPinView({
- Key? key,
- double size = 40,
- Color? contentColor,
- Color? color,
- double radius = 3,
- int count = 6,
- VxPinBorderType type = VxPinBorderType.round,
- double space = 8,
- bool obscureText = true,
- bool fill = false,
- TextInputType? keyboardType,
- TextInputAction? textInputAction,
- ValueChanged<
String> ? onChanged, - VoidCallback? onEditingComplete,
- ValueChanged<
String> ? onSubmitted, - FocusNode? focusNode,
Implementation
const VxPinView({
Key? 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),
super(key: key);