copyWith method
The method for the copy with.
Implementation
ChatColorThemeData copyWith({
Color? backgroundColor,
}) {
return ChatColorThemeData(
backgroundColor: backgroundColor ?? this.backgroundColor,
);
}
The method for the copy with.
ChatColorThemeData copyWith({
Color? backgroundColor,
}) {
return ChatColorThemeData(
backgroundColor: backgroundColor ?? this.backgroundColor,
);
}