DiveTopicCard constructor

const DiveTopicCard({
  1. Key? key,
  2. Widget? richMedia,
  3. String? headerText,
  4. String? subheadText,
  5. String? supportingText,
  6. List<String>? buttonTitles,
  7. double width = 344,
})

Implementation

const DiveTopicCard(
    {Key? key,
    this.richMedia,
    this.headerText,
    this.subheadText,
    this.supportingText,
    this.buttonTitles,
    this.width = 344})
    : super(key: key);