copyWith method
RecommendedChatFilters
copyWith({
- List<
RecommendedChatFilter> ? chatFilters, - dynamic extra,
- int? clientId,
Implementation
RecommendedChatFilters copyWith({
List<RecommendedChatFilter>? chatFilters,
dynamic extra,
int? clientId,
}) => RecommendedChatFilters(
chatFilters: chatFilters ?? this.chatFilters,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);