ChatUIKitDialogAction<T> constructor

ChatUIKitDialogAction<T>({
  1. required ChatUIKitDialogActionType type,
  2. required String label,
  3. TextStyle? style,
  4. VoidCallback? onTap,
  5. void onInputsTap(
    1. List<String> inputs
    )?,
})

Implementation

ChatUIKitDialogAction({
  required this.type,
  required this.label,
  this.style,
  this.onTap,
  this.onInputsTap,
});