purchase static method

Future<bool> purchase(
  1. ProductDetails productDetails
)

This will trigger the purchase flow for the user.

A verified purchase will be send to activeProducts Stream

@return Future

Implementation

static Future<bool> purchase(ProductDetails productDetails) async {
  return LinkFivePurchasesImpl().purchase(productDetails);
}