MephistoMenuCard constructor

const MephistoMenuCard({
  1. Key? key,
  2. required Widget prefix,
  3. required String text,
  4. required Widget suffix,
  5. double? borderRadius,
  6. Color? textColor,
  7. bool? showBorder = true,
  8. Function? onTap,
})

Implementation

const MephistoMenuCard(
    {super.key,
    required this.prefix,
    required this.text,
    required this.suffix,
    this.borderRadius,
    this.textColor,
    this.showBorder = true,
    this.onTap});