onePayPurchases method

Future<Response?> onePayPurchases(
  1. String code,
  2. String amount,
  3. String deviceUDID,
  4. String secretKey,
  5. String apiKey,
)

Implementation

Future<Response?> onePayPurchases(String code, String amount,
    String deviceUDID, String secretKey, String apiKey) async {
  return apiExecutor.onePayPurchases(
      code, amount, deviceUDID, secretKey, apiKey);
}