FastActionCard constructor

const FastActionCard({
  1. Key? key,
  2. required String titleText,
  3. required VoidCallback onTap,
  4. Color? backgroundColor,
  5. Color? titleTextColor,
  6. List<Widget>? headerActions,
  7. List<Widget>? footerActions,
  8. Color? shadowColor,
  9. EdgeInsets? padding,
  10. Widget? child,
})

Implementation

const FastActionCard({
  Key? key,
  required this.titleText,
  required this.onTap,
  this.backgroundColor,
  this.titleTextColor,
  this.headerActions,
  this.footerActions,
  this.shadowColor,
  this.padding,
  this.child,
}) : super(key: key);