getCraftStarGifts method
Get Craft Star Gifts.
ID: fd05dd00.
Implementation
Future<Result<PaymentsSavedStarGiftsBase>> getCraftStarGifts({
required int giftId,
required String offset,
required int limit,
}) async {
// Preparing the request.
final request = PaymentsGetCraftStarGifts(
giftId: giftId,
offset: offset,
limit: limit,
);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<PaymentsSavedStarGiftsBase>();
}