DanUIOverlappingCard constructor

const DanUIOverlappingCard({
  1. Key? key,
  2. required Widget child,
  3. Widget? headerWidget,
  4. double? headerHeight,
  5. double overlapFactor = 0.5,
  6. Color? headerColor,
  7. Color backgroundColor = Colors.transparent,
})

Implementation

const DanUIOverlappingCard({
  super.key,
  required this.child,
  this.headerWidget,
  this.headerHeight,
  this.overlapFactor = 0.5,
  this.headerColor,
  this.backgroundColor = Colors.transparent,
});