DraftModeUICard constructor

const DraftModeUICard({
  1. Key? key,
  2. IconData? icon,
  3. required String title,
  4. required String description,
  5. EdgeInsetsGeometry? outerPadding = _defaultOuterPadding,
  6. EdgeInsetsGeometry? innerPadding,
  7. double? borderRadius,
  8. Color? backgroundColor,
  9. Color? iconColor,
  10. Color? titleColor,
  11. Color? descriptionColor,
  12. Color? borderColor,
  13. List<BoxShadow>? shadow,
  14. VoidCallback? onTap,
})

Implementation

const DraftModeUICard({
  super.key,
  this.icon,
  required this.title,
  required this.description,
  this.outerPadding = _defaultOuterPadding,
  this.innerPadding,
  this.borderRadius,
  this.backgroundColor,
  this.iconColor,
  this.titleColor,
  this.descriptionColor,
  this.borderColor,
  this.shadow,
  this.onTap,
});