ItemCard constructor
- {Key? key,
- ItemCardStyle? style,
- String? imageUrl,
- String? title,
- String? subtitle,
- VoidCallback? onTap,
- VoidCallback? onLongPress,
- String? semanticLabel,
- String? semanticValue,
- String? imageHeroTag}
Implementation
const ItemCard(
{super.key,
ItemCardStyle? style,
this.imageUrl,
this.title,
this.subtitle,
this.onTap,
this.onLongPress,
this.semanticLabel,
this.semanticValue,
this.imageHeroTag})
: style = style ?? const ItemCardStyle();