IntegerPlateItem constructor

const IntegerPlateItem({
  1. Key? key,
  2. required FocusNode focusNode,
  3. required void onChanged(
    1. String
    ),
  4. required TextEditingController controller,
  5. required void onCompleted()?,
  6. required TextStyle? textStyle,
  7. BorderRadius? borderRadius,
  8. Color? activeColor,
  9. Color? inactiveColor,
  10. void onRemoved()?,
  11. Color? backgroundColor,
})

Implementation

const IntegerPlateItem(
    {super.key,
    required this.focusNode,
    required this.onChanged,
    required this.controller,
    required this.onCompleted,
    required this.textStyle,
    this.borderRadius,
    this.activeColor,
    this.inactiveColor,
    this.onRemoved,
    this.backgroundColor});