FastActionCard constructor
FastActionCard({
- Key? key,
- required String titleText,
- required VoidCallback onTap,
- Color? backgroundColor,
- Color? titleTextColor,
- List<
Widget> ? headerActions, - Color? shadowColor,
- EdgeInsets? padding,
- Widget? child,
Implementation
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);