DeepCard constructor

const DeepCard({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? color,
  5. bool clipped = false,
  6. double? borderRadius,
  7. Widget? child,
})

Implementation

const DeepCard({
  Key? key,
  this.width,
  this.height,
  this.color,
  this.clipped = false,
  this.borderRadius,
  this.child,
}) : super(key: key);