copyWith method
Implementation
FoundChatBoosts copyWith({
int? totalCount,
List<ChatBoost>? boosts,
String? nextOffset,
}) => FoundChatBoosts(
totalCount: totalCount ?? this.totalCount,
boosts: boosts ?? this.boosts,
nextOffset: nextOffset ?? this.nextOffset,
);