ChatUIKitReplyBar constructor

const ChatUIKitReplyBar({
  1. required MessageModel messageModel,
  2. VoidCallback? onCancelTap,
  3. Color? backgroundColor,
  4. Widget? title,
  5. Widget? subTitle,
  6. Widget? leading,
  7. Widget? trailing,
  8. Key? key,
})

Implementation

const ChatUIKitReplyBar({
  required this.messageModel,
  this.onCancelTap,
  this.backgroundColor,
  this.title,
  this.subTitle,
  this.leading,
  this.trailing,
  super.key,
});