PinInput constructor
const
PinInput({
- Key? key,
- required TextEditingController controller,
- String? errorText,
- required dynamic onChanged(),
- Color primaryColor = Colors.blue,
Implementation
const PinInput({
Key? key,
required this.controller,
this.errorText,
required this.onChanged,
this.primaryColor = Colors.blue,
}) : super(key: key);