GamePlayButton constructor

const GamePlayButton({
  1. Key? key,
  2. required String title,
  3. Color? backColor,
  4. List<Color>? gradientColors,
  5. Color? stokeColor,
  6. double? stokeWidth,
  7. double? fontSize,
  8. FontWeight? fontWeight,
  9. Color? textColor,
  10. Color? textStokeColor,
  11. double? textStokeWidth,
  12. void onTap()?,
})

Implementation

const GamePlayButton({
  super.key,
  required this.title,
  this.backColor,
  this.gradientColors,
  this.stokeColor,
  this.stokeWidth,
  this.fontSize,
  this.fontWeight,
  this.textColor,
  this.textStokeColor,
  this.textStokeWidth,
  this.onTap,
});