UikLokalAcademyCardProps constructor

UikLokalAcademyCardProps({
  1. String logoPath = "",
  2. String cardType = "",
  3. String title = "",
  4. String content = "",
  5. String reward = "",
  6. double width = 0,
  7. double height = 0,
  8. double logoWidth = 0,
  9. double logoHeight = 0,
  10. double titleFontSize = 0,
  11. double contentFontSize = 0,
  12. UikButtonProps? buttonText,
})

Implementation

UikLokalAcademyCardProps({
  this.logoPath = "",
  this.cardType = "",
  this.title = "",
  this.content = "",
  this.reward = "",
  this.width = 0,
  this.height = 0,
  this.logoWidth = 0,
  this.logoHeight = 0,
  this.titleFontSize = 0,
  this.contentFontSize = 0,
  UikButtonProps? buttonText,
}) {
  this.buttonText = buttonText ?? UikButtonProps();
}