XDashboardCard constructor

XDashboardCard({
  1. Key? key,
  2. dynamic itemToView,
  3. Color? iconColor,
  4. bool horizontalCard = false,
  5. String propToShow = "",
  6. String? messageForError = "",
  7. IconData? icon,
  8. double? iconSize,
  9. TextStyle? styleLabel,
  10. double? widthCard,
  11. double? heightCard,
})

Implementation

XDashboardCard({
  Key? key,
  this.itemToView,
  this.iconColor,
  this.horizontalCard = false,
  this.propToShow = "",
  this.messageForError = "",
  this.icon,
  this.iconSize,
  this.styleLabel,
  this.widthCard,
  this.heightCard,
});