ChatUIKitDetailContentAction constructor

ChatUIKitDetailContentAction({
  1. String? title,
  2. required String icon,
  3. Size? iconSize,
  4. String? packageName,
  5. bool singleLine = false,
  6. ChatUIKitActionItemOnTap? onTap,
})

Implementation

ChatUIKitDetailContentAction({
  this.title,
  required this.icon,
  this.iconSize,
  this.packageName,
  this.singleLine = false,
  this.onTap,
});