MintFlatCard constructor

const MintFlatCard({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
  4. Color? borderColor,
  5. double? borderRadius,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
})

Implementation

const MintFlatCard({
  super.key,
  required this.child,
  this.backgroundColor,
  this.borderColor,
  this.borderRadius,
  this.padding,
  this.margin,
});