MessageBranchNew constructor

const MessageBranchNew({
  1. Key? key,
  2. required dynamic payload,
  3. required Function onClickItem,
  4. EdgeInsetsGeometry? textPadding,
  5. Color? messageBackgroundColor,
  6. BorderRadius? messageBorderRadius,
  7. required TUITheme theme,
})

Implementation

const MessageBranchNew({
  super.key,
  required this.payload,
  required this.onClickItem,
  this.textPadding,
  this.messageBackgroundColor,
  this.messageBorderRadius,
  required this.theme,
});