MephistoCard constructor

const MephistoCard({
  1. Key? key,
  2. required Widget child,
  3. double? borderRadius,
  4. bool? showTapFeedback = false,
  5. bool? hideBorder = false,
  6. EdgeInsets? edgeInsets = const EdgeInsets.all(0),
  7. Function? onTap,
  8. Color? color,
})

Implementation

const MephistoCard(
    {super.key,
    required this.child,
    this.borderRadius,
    this.showTapFeedback = false,
    this.hideBorder = false,
    this.edgeInsets = const EdgeInsets.all(0),
    this.onTap,
    this.color});