CardMessage constructor

CardMessage({
  1. String? backgroundHexColor,
  2. Text? body,
  3. String? landscapeImageUrl,
  4. String? portraitImageUrl,
  5. Action? primaryAction,
  6. Button? primaryActionButton,
  7. Action? secondaryAction,
  8. Button? secondaryActionButton,
  9. Text? title,
})

Implementation

CardMessage({
  this.backgroundHexColor,
  this.body,
  this.landscapeImageUrl,
  this.portraitImageUrl,
  this.primaryAction,
  this.primaryActionButton,
  this.secondaryAction,
  this.secondaryActionButton,
  this.title,
});