CometChatBaseOptions constructor

CometChatBaseOptions({
  1. required String id,
  2. String? title,
  3. String? icon,
  4. String? packageName,
  5. TextStyle? titleStyle,
  6. Color? backgroundColor,
  7. Color? iconTint,
})

Implementation

CometChatBaseOptions({
  required this.id,
  this.title,
  this.icon,
  this.packageName,
  this.titleStyle,
  this.backgroundColor,
  this.iconTint,
  //this.action
});