ChatUIKitBottomSheet<T> constructor

const ChatUIKitBottomSheet<T>({
  1. List<ChatUIKitEventAction>? items,
  2. String? title,
  3. TextStyle? titleStyle,
  4. Widget? titleWidget,
  5. Widget? body,
  6. String? cancelLabel,
  7. TextStyle? cancelLabelStyle,
  8. bool showCancel = true,
  9. double? height,
  10. Key? key,
})

Implementation

const ChatUIKitBottomSheet({
  this.items,
  this.title,
  this.titleStyle,
  this.titleWidget,
  this.body,
  this.cancelLabel,
  this.cancelLabelStyle,
  this.showCancel = true,
  this.height,
  super.key,
});