NiceEventCard constructor

const NiceEventCard({
  1. Key? key,
  2. required NiceEventData event,
  3. VoidCallback? onTap,
  4. VoidCallback? onRegister,
  5. bool isRegistered = false,
  6. bool compact = false,
})

Implementation

const NiceEventCard({
  super.key,
  required this.event,
  this.onTap,
  this.onRegister,
  this.isRegistered = false,
  this.compact = false,
});