ChatUIKitDialog<T> constructor

const ChatUIKitDialog<T>({
  1. required List<ChatUIKitDialogAction<T>> actionItems,
  2. String? title,
  3. String? content,
  4. TextStyle? titleStyle,
  5. TextStyle? contentStyle,
  6. List<ChatUIKitDialogInputContentItem>? inputItems,
  7. TextStyle? hiddenStyle,
  8. double leftRightPadding = defaultLeftRightPadding,
  9. ChatUIKitDialogRectangleType borderType = ChatUIKitDialogRectangleType.circular,
  10. Key? key,
})

Implementation

const ChatUIKitDialog({
  required this.actionItems,
  this.title,
  this.content,
  this.titleStyle,
  this.contentStyle,
  this.inputItems,
  this.hiddenStyle,
  this.leftRightPadding = defaultLeftRightPadding,
  this.borderType = ChatUIKitDialogRectangleType.circular,
  super.key,
});