copyWith method

ChatColorThemeData copyWith({
  1. Color? backgroundColor,
})

The method for the copy with.

Implementation

ChatColorThemeData copyWith({
  Color? backgroundColor,
}) {
  return ChatColorThemeData(
    backgroundColor: backgroundColor ?? this.backgroundColor,
  );
}