NeoPopCard constructor

const NeoPopCard({
  1. Key? key,
  2. required Widget? child,
  3. required Color color,
  4. double? depth,
  5. Size? size,
  6. Color? borderColor,
  7. Color? hShadowColor,
  8. Color? vShadowColor,
})

Create a NeoPop card.

The child and color properties are required.

Implementation

const NeoPopCard({
  Key? key,
  required this.child,
  required this.color,
  this.depth,
  this.size,
  this.borderColor,
  this.hShadowColor,
  this.vShadowColor,
}) : super(key: key);