EventOptions constructor

EventOptions({
  1. String? emptyText,
  2. bool showLoadingForEvent()?,
  3. Widget loadingWidget()?,
  4. Color emptyTextColor = const Color(0xffe5e5e5),
  5. IconData emptyIcon = Icons.reorder,
  6. Color emptyIconColor = const Color(0xffebebeb),
})

Implementation

EventOptions({
  this.emptyText,
  this.showLoadingForEvent,
  this.loadingWidget,
  this.emptyTextColor = const Color(0xffe5e5e5),
  this.emptyIcon = Icons.reorder,
  this.emptyIconColor = const Color(0xffebebeb),
});