PhoenixNavigationCard constructor

const PhoenixNavigationCard({
  1. Key? key,
  2. double? width,
  3. EdgeInsets? padding,
  4. VoidCallback? callback,
  5. Color? backgroundColor,
  6. Widget? icon,
  7. Color? icColor,
  8. double? icHeight,
  9. double? icWidth,
  10. required Widget title,
  11. required Widget description,
  12. Widget? navigationText,
  13. bool isVisible = true,
  14. Color? icBtnBackgroundColor,
  15. Color? icBtnColor,
  16. double? icBtnSize,
})

Implementation

const PhoenixNavigationCard({
  Key? key,
  this.width,
  this.padding,
  this.callback,
  this.backgroundColor,
  this.icon,
  this.icColor,
  this.icHeight,
  this.icWidth,
  required this.title,
  required this.description,
  this.navigationText,
  this.isVisible = true,
  this.icBtnBackgroundColor,
  this.icBtnColor,
  this.icBtnSize,
}) : super(key: key);