getMyBoosts method

Get My Boosts.

ID: 0be77b4a.

Implementation

Future<Result<PremiumMyBoostsBase>> getMyBoosts() async {
  // Preparing the request.
  final request = PremiumGetMyBoosts();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<PremiumMyBoostsBase>();
}