makePassPurchase method

Future<String?> makePassPurchase(
  1. String userId,
  2. String orderId,
  3. String paymentToken,
  4. String expDate,
  5. String paymentAmount,
  6. String dbRefNo,
  7. String description,
)

Purchase Request

Implementation

Future<String?> makePassPurchase(
    String userId,
    String orderId,
    String paymentToken,
    String expDate,
    String paymentAmount,
    String dbRefNo,
    String description) {
  return PassMtxPlatform.instance.purchase(userId, orderId, paymentToken,
      expDate, paymentAmount, dbRefNo, description);
}