ChatUIKitEventAction<T> constructor

ChatUIKitEventAction<T>({
  1. required ChatUIKitEventActionType type,
  2. required String label,
  3. required ChatUIKitActionType actionType,
  4. TextStyle? style,
  5. VoidCallback? onTap,
  6. Widget? icon,
})

Implementation

ChatUIKitEventAction({
  required this.type,
  required this.label,
  required this.actionType,
  this.style,
  this.onTap,
  this.icon,
});