FastCard constructor

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

Implementation

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