DuoMorphicCard constructor

DuoMorphicCard({
  1. required Widget child,
  2. Offset offset = const Offset(0, 0),
  3. double blur = 5,
  4. Color innerShadowColor = Colors.grey,
  5. Color cardBackgroundColor = Colors.white,
  6. double opacity = 0.8,
  7. required double height,
  8. required double width,
  9. required BorderRadiusGeometry radius,
})

Implementation

DuoMorphicCard({
  required this.child,
  this.offset = const Offset(0, 0),
  this.blur = 5,
  this.innerShadowColor = Colors.grey,
  this.cardBackgroundColor = Colors.white,
  this.opacity = 0.8,
  required this.height,
  required this.width,
  required this.radius,
});