copyWith method

SfChatThemeData copyWith({
  1. Color? actionButtonForegroundColor,
  2. Color? actionButtonBackgroundColor,
  3. Color? actionButtonFocusColor,
  4. Color? actionButtonHoverColor,
  5. Color? actionButtonSplashColor,
  6. Color? actionButtonDisabledForegroundColor,
  7. Color? actionButtonDisabledBackgroundColor,
  8. double? actionButtonElevation,
  9. double? actionButtonFocusElevation,
  10. double? actionButtonHoverElevation,
  11. double? actionButtonDisabledElevation,
  12. double? actionButtonHighlightElevation,
  13. ShapeBorder? actionButtonShape,
  14. MouseCursor? actionButtonMouseCursor,
  15. Color? outgoingBubbleContentBackgroundColor,
  16. Color? incomingBubbleContentBackgroundColor,
  17. TextStyle? editorTextStyle,
  18. TextStyle? outgoingContentTextStyle,
  19. TextStyle? incomingContentTextStyle,
  20. TextStyle? outgoingPrimaryHeaderTextStyle,
  21. TextStyle? incomingPrimaryHeaderTextStyle,
  22. TextStyle? outgoingSecondaryHeaderTextStyle,
  23. TextStyle? incomingSecondaryHeaderTextStyle,
  24. ShapeBorder? outgoingBubbleContentShape,
  25. ShapeBorder? incomingBubbleContentShape,
})

Implementation

SfChatThemeData copyWith({
  Color? actionButtonForegroundColor,
  Color? actionButtonBackgroundColor,
  Color? actionButtonFocusColor,
  Color? actionButtonHoverColor,
  Color? actionButtonSplashColor,
  Color? actionButtonDisabledForegroundColor,
  Color? actionButtonDisabledBackgroundColor,
  double? actionButtonElevation,
  double? actionButtonFocusElevation,
  double? actionButtonHoverElevation,
  double? actionButtonDisabledElevation,
  double? actionButtonHighlightElevation,
  ShapeBorder? actionButtonShape,
  MouseCursor? actionButtonMouseCursor,
  Color? outgoingBubbleContentBackgroundColor,
  Color? incomingBubbleContentBackgroundColor,
  TextStyle? editorTextStyle,
  TextStyle? outgoingContentTextStyle,
  TextStyle? incomingContentTextStyle,
  TextStyle? outgoingPrimaryHeaderTextStyle,
  TextStyle? incomingPrimaryHeaderTextStyle,
  TextStyle? outgoingSecondaryHeaderTextStyle,
  TextStyle? incomingSecondaryHeaderTextStyle,
  ShapeBorder? outgoingBubbleContentShape,
  ShapeBorder? incomingBubbleContentShape,
}) {
  return SfChatThemeData.raw(
    actionButtonForegroundColor:
        actionButtonForegroundColor ?? this.actionButtonForegroundColor,
    actionButtonBackgroundColor:
        actionButtonBackgroundColor ?? this.actionButtonBackgroundColor,
    actionButtonFocusColor:
        actionButtonFocusColor ?? this.actionButtonFocusColor,
    actionButtonHoverColor:
        actionButtonHoverColor ?? this.actionButtonHoverColor,
    actionButtonSplashColor:
        actionButtonSplashColor ?? this.actionButtonSplashColor,
    actionButtonDisabledForegroundColor:
        actionButtonDisabledForegroundColor ??
            this.actionButtonDisabledForegroundColor,
    actionButtonDisabledBackgroundColor:
        actionButtonDisabledBackgroundColor ??
            this.actionButtonDisabledBackgroundColor,
    actionButtonElevation:
        actionButtonElevation ?? this.actionButtonElevation,
    actionButtonFocusElevation:
        actionButtonFocusElevation ?? this.actionButtonFocusElevation,
    actionButtonHoverElevation:
        actionButtonHoverElevation ?? this.actionButtonHoverElevation,
    actionButtonDisabledElevation:
        actionButtonDisabledElevation ?? this.actionButtonDisabledElevation,
    actionButtonHighlightElevation:
        actionButtonHighlightElevation ?? this.actionButtonHighlightElevation,
    actionButtonShape: actionButtonShape ?? this.actionButtonShape,
    actionButtonMouseCursor:
        actionButtonMouseCursor ?? this.actionButtonMouseCursor,
    outgoingBubbleContentBackgroundColor:
        outgoingBubbleContentBackgroundColor ??
            this.outgoingBubbleContentBackgroundColor,
    incomingBubbleContentBackgroundColor:
        incomingBubbleContentBackgroundColor ??
            this.incomingBubbleContentBackgroundColor,
    editorTextStyle: editorTextStyle ?? this.editorTextStyle,
    outgoingContentTextStyle:
        outgoingContentTextStyle ?? this.outgoingContentTextStyle,
    incomingContentTextStyle:
        incomingContentTextStyle ?? this.incomingContentTextStyle,
    outgoingPrimaryHeaderTextStyle:
        outgoingPrimaryHeaderTextStyle ?? this.outgoingPrimaryHeaderTextStyle,
    incomingPrimaryHeaderTextStyle:
        incomingPrimaryHeaderTextStyle ?? this.incomingPrimaryHeaderTextStyle,
    outgoingSecondaryHeaderTextStyle: outgoingSecondaryHeaderTextStyle ??
        this.outgoingSecondaryHeaderTextStyle,
    incomingSecondaryHeaderTextStyle: incomingSecondaryHeaderTextStyle ??
        this.incomingSecondaryHeaderTextStyle,
    outgoingBubbleContentShape:
        outgoingBubbleContentShape ?? this.outgoingBubbleContentShape,
    incomingBubbleContentShape:
        incomingBubbleContentShape ?? this.incomingBubbleContentShape,
  );
}