ChatBottomSheetWidget constructor

const ChatBottomSheetWidget({
  1. required List<ChatBottomSheetItem> items,
  2. String? title,
  3. TextStyle? titleStyle,
  4. TextStyle? cancelStyle,
  5. Key? key,
})

Implementation

const ChatBottomSheetWidget({
  required this.items,
  this.title,
  this.titleStyle,
  this.cancelStyle,
  super.key,
});