applyBoost method
Apply Boost.
ID: 6b7da746.
Implementation
Future<Result<PremiumMyBoostsBase>> applyBoost({
List<int>? slots,
required InputPeerBase peer,
}) async {
// Preparing the request.
final request = PremiumApplyBoost(slots: slots, peer: peer);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<PremiumMyBoostsBase>();
}