MinCard constructor

const MinCard({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. Color? borderColor,
  5. BorderRadiusGeometry? borderRadius,
  6. List<BoxShadow>? shadows,
  7. EdgeInsetsGeometry? padding,
  8. EdgeInsetsGeometry? margin,
  9. double? width,
  10. double? height,
  11. BoxConstraints? constraints,
})

Implementation

const MinCard({
  super.key,
  required this.child,
  this.backgroundColor,
  this.borderColor,
  this.borderRadius,
  this.shadows,
  this.padding,
  this.margin,
  this.width,
  this.height,
  this.constraints,
});