AssistBubbleSettings constructor

const AssistBubbleSettings({
  1. bool showUserName = false,
  2. bool showTimestamp = false,
  3. bool? showUserAvatar,
  4. DateFormat? timestampFormat,
  5. TextStyle? textStyle,
  6. TextStyle? headerTextStyle,
  7. Color? contentBackgroundColor,
  8. ShapeBorder? contentShape,
  9. double widthFactor = 0.8,
  10. Size avatarSize = const Size.square(32.0),
  11. EdgeInsetsGeometry? padding,
  12. EdgeInsetsGeometry? contentPadding,
  13. EdgeInsetsGeometry? avatarPadding,
  14. EdgeInsetsGeometry headerPadding = const EdgeInsetsDirectional.only(bottom: 3.0),
  15. EdgeInsetsGeometry footerPadding = const EdgeInsetsDirectional.only(top: 4.0),
})

Implementation

const AssistBubbleSettings({
  this.showUserName = false,
  this.showTimestamp = false,
  this.showUserAvatar,
  this.timestampFormat,
  this.textStyle,
  this.headerTextStyle,
  this.contentBackgroundColor,
  this.contentShape,
  this.widthFactor = 0.8,
  this.avatarSize = const Size.square(32.0),
  this.padding,
  this.contentPadding,
  this.avatarPadding,
  this.headerPadding = const EdgeInsetsDirectional.only(bottom: 3.0),
  this.footerPadding = const EdgeInsetsDirectional.only(top: 4.0),
});