copyWith method
Implementation
GetTopChats copyWith({TopChatCategory? category, int? limit}) => GetTopChats(
category: category ?? this.category,
limit: limit ?? this.limit,
);
GetTopChats copyWith({TopChatCategory? category, int? limit}) => GetTopChats(
category: category ?? this.category,
limit: limit ?? this.limit,
);