copyWith method

RecommendedChatFilters copyWith({
  1. List<RecommendedChatFilter>? chatFilters,
  2. dynamic extra,
  3. 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,
);