CometChatOption constructor

CometChatOption({
  1. required String id,
  2. String? title,
  3. String? icon,
  4. String? packageName,
  5. TextStyle? titleStyle,
  6. Color? backgroundColor,
  7. Color? iconTint,
  8. dynamic onClick()?,
  9. Widget? iconWidget,
})

Implementation

CometChatOption({
  required this.id,
  this.title,
  this.icon,
  this.packageName,
  this.titleStyle,
  this.backgroundColor,
  this.iconTint,
  this.onClick,
  this.iconWidget,
});