StringPlateItem constructor

const StringPlateItem({
  1. Key? key,
  2. required VoidCallback? onPressed,
  3. required int indexInPlateTypes,
  4. Widget? defaultLetterIcon,
  5. TextStyle? textStyle,
  6. BorderRadius? borderRadius,
  7. required int width,
  8. required int height,
  9. Color? inactiveColor,
  10. Color? activeColor,
})

Implementation

const StringPlateItem({
  super.key,
  required this.onPressed,
  required this.indexInPlateTypes,
  this.defaultLetterIcon,
  this.textStyle,
  this.borderRadius,
  required this.width,
  required this.height,
  this.inactiveColor,
  this.activeColor,
});