EcpSimpleCard constructor

const EcpSimpleCard({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? margin,
  4. Color? bgColor,
  5. EdgeInsets? padding,
})

Implementation

const EcpSimpleCard({
  super.key,
  required this.child,
  this.margin,
  this.bgColor,
  this.padding,
});