ChatUIKitEventAction<T>.normal constructor

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

Implementation

ChatUIKitEventAction.normal({
  required this.label,
  this.actionType = ChatUIKitActionType.custom,
  this.style,
  this.onTap,
  this.icon,
}) : type = ChatUIKitEventActionType.normal;