IdsCard constructor
const
IdsCard({
- Key? key,
- required Widget child,
- IdsCardVariant variant = IdsCardVariant.outline,
- IdsCardSize size = IdsCardSize.md,
- VoidCallback? onPressed,
- bool interactive = false,
Implementation
const IdsCard({
super.key,
required this.child,
this.variant = IdsCardVariant.outline,
this.size = IdsCardSize.md,
this.onPressed,
this.interactive = false,
});