OudsVerticalImageFirstCard constructor

const OudsVerticalImageFirstCard({
  1. Key? key,
  2. required String title,
  3. OudsCardImage? image,
  4. Widget? child,
  5. dynamic onClick()?,
})

Creates an OUDS vertical image first card.

Implementation

const OudsVerticalImageFirstCard({
  super.key,
  required this.title,
  this.image,
  this.child,
  this.onClick,
});