NeomageCard constructor

const NeomageCard({
  1. Key? key,
  2. Widget? header,
  3. required Widget child,
  4. Widget? footer,
  5. EdgeInsetsGeometry? padding,
  6. Color? backgroundColor,
  7. bool hasBorder = true,
})

Implementation

const NeomageCard({
  super.key,
  this.header,
  required this.child,
  this.footer,
  this.padding,
  this.backgroundColor,
  this.hasBorder = true,
});