EventPickerBean constructor

EventPickerBean({
  1. String? contentText,
  2. required Function onTap,
  3. Widget? contentWidget,
  4. Widget? icon,
})

Implementation

EventPickerBean({
  this.contentText,
  required this.onTap,
  this.contentWidget,
  this.icon,
});