PinInput constructor

const PinInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. String? errorText,
  4. required dynamic onChanged(
    1. String
    ),
  5. Color primaryColor = Colors.blue,
})

Implementation

const PinInput({
  Key? key,
  required this.controller,
  this.errorText,
  required this.onChanged,
  this.primaryColor = Colors.blue,
}) : super(key: key);