copyWith method
Implementation
ChatEventMemberTagChanged copyWith({
int? userId,
String? oldTag,
String? newTag,
}) => ChatEventMemberTagChanged(
userId: userId ?? this.userId,
oldTag: oldTag ?? this.oldTag,
newTag: newTag ?? this.newTag,
);