hasProductWithId method

Future<bool> hasProductWithId(
  1. String productId
)

Returns true if the product with productId is available in Apphud products.

Implementation

Future<bool> hasProductWithId(String productId) async {
  return ApphudPlusPlatform.instance.hasProductWithId(productId);
}