BoxCard constructor

const BoxCard({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. bool hasShadow = true,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
  7. AlignmentGeometry? alignment,
  8. Decoration? decoration,
  9. required Widget child,
})

Implementation

const BoxCard({
  Key? key,
  this.height,
  this.width,
  this.hasShadow = true,
  this.padding,
  this.margin,
  this.alignment,
  this.decoration,
  required this.child,
}) : super(key: key);