HoverBaseCard constructor

HoverBaseCard({
  1. Widget? child = const SizedBox.shrink(),
  2. double? elevation,
  3. double? cornerRadius,
  4. Color? color = Colors.white,
  5. double? margin,
  6. double? leftMargin,
  7. double? topMargin,
  8. double? rightMargin,
  9. double? bottomMargin,
  10. double? padding,
  11. double? leftPadding,
  12. double? topPadding,
  13. double? bottomPadding,
  14. double? rightPadding,
})

Implementation

HoverBaseCard({
  this.child = const SizedBox.shrink(),
  this.elevation,
  this.cornerRadius,
  this.color: Colors.white,
  this.margin,
  this.leftMargin,
  this.topMargin,
  this.rightMargin,
  this.bottomMargin,
  this.padding,
  this.leftPadding,
  this.topPadding,
  this.bottomPadding,
  this.rightPadding,
});