Card constructor

Card({
  1. List<CardAction>? cardActions,
  2. CardHeader? header,
  3. String? name,
  4. List<Section>? sections,
})

Implementation

Card({
  this.cardActions,
  this.header,
  this.name,
  this.sections,
});