copyWith method

StreamMessageListViewThemeData copyWith({
  1. Color? backgroundColor,
  2. DecorationImage? backgroundImage,
})

Copies this StreamMessageListViewThemeData to another.

Implementation

StreamMessageListViewThemeData copyWith({
  Color? backgroundColor,
  DecorationImage? backgroundImage,
}) {
  return StreamMessageListViewThemeData(
    backgroundColor: backgroundColor ?? this.backgroundColor,
    backgroundImage: backgroundImage ?? this.backgroundImage,
  );
}