BottomCard constructor

const BottomCard({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. void onViewInfo()?,
  5. void onDeleteInfo()?,
  6. void onEditInfo()?,
  7. double? height = 450,
  8. String cardName = "Info",
  9. Widget? topWidget,
  10. Widget? bottomWidget,
})

Implementation

const BottomCard({
  Key? key,
  required this.title,
  required this.subtitle,
  this.onViewInfo,
  this.onDeleteInfo,
  this.onEditInfo,
  this.height = 450,
  this.cardName = "Info",
  this.topWidget,
  this.bottomWidget,
}) : super(key: key);