IdsCard constructor

const IdsCard({
  1. Key? key,
  2. required Widget child,
  3. IdsCardVariant variant = IdsCardVariant.outline,
  4. IdsCardSize size = IdsCardSize.md,
  5. VoidCallback? onPressed,
  6. bool interactive = false,
})

Implementation

const IdsCard({
  super.key,
  required this.child,
  this.variant = IdsCardVariant.outline,
  this.size = IdsCardSize.md,
  this.onPressed,
  this.interactive = false,
});