OpenCardClickable constructor

const OpenCardClickable({
  1. Key? key,
  2. required Widget child,
  3. required VoidCallback onClick,
  4. Color hoverColor = Colors.black12,
  5. double width = -1,
  6. double height = -1,
})

Implementation

const OpenCardClickable({
  super.key,
  required this.child,
  required this.onClick,
  this.hoverColor = Colors.black12,
  this.width = -1,
  this.height = -1,
});