copyWith method
Implementation
ChatFilterInfo copyWith({
int? id,
String? title,
String? iconName,
dynamic extra,
int? clientId,
}) => ChatFilterInfo(
id: id ?? this.id,
title: title ?? this.title,
iconName: iconName ?? this.iconName,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);