makePurchase method

Future<String?> makePurchase(
  1. String shortCode
)

Implementation

Future<String?> makePurchase(String shortCode) {
  UssdPlatform.onSuccess = onSuccess;
  UssdPlatform.onFailed = onFailed;
  return UssdPlatform.instance.makePurchase(shortCode);
}