copyWith method
Implementation
GetChatBoosts copyWith({
int? chatId,
bool? onlyGiftCodes,
String? offset,
int? limit,
}) => GetChatBoosts(
chatId: chatId ?? this.chatId,
onlyGiftCodes: onlyGiftCodes ?? this.onlyGiftCodes,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);