GameCardProps constructor

const GameCardProps({
  1. required String name,
  2. String? description,
  3. String? iconUrl,
  4. Widget? icon,
  5. String? backgroundUrl,
  6. String? status,
  7. List<String>? features,
  8. void onTap()?,
  9. String? ctaText,
})

Implementation

const GameCardProps({
  required this.name,
  this.description,
  this.iconUrl,
  this.icon,
  this.backgroundUrl,
  this.status,
  this.features,
  this.onTap,
  this.ctaText,
});