ChatDialog<T> constructor

const ChatDialog<T>({
  1. required List<ChatDialogItem> items,
  2. String? subTitle,
  3. String? title,
  4. List<String>? hiddenList,
  5. ChatDialogRectangleBorderType borderType = ChatDialogRectangleBorderType.circular,
  6. Key? key,
})

Implementation

const ChatDialog({
  required this.items,
  this.subTitle,
  this.title,
  this.hiddenList,
  this.borderType = ChatDialogRectangleBorderType.circular,
  super.key,
});