copyWith method
ChatEventBackgroundChanged
copyWith({
- ChatBackground? oldBackground,
- ChatBackground? newBackground,
Implementation
ChatEventBackgroundChanged copyWith({
ChatBackground? oldBackground,
ChatBackground? newBackground,
}) => ChatEventBackgroundChanged(
oldBackground: oldBackground ?? this.oldBackground,
newBackground: newBackground ?? this.newBackground,
);