removeProduct method

Future<void> removeProduct(
  1. String productID
)

Use it carefully.

This will remove the product from purchase list.

i.e. It will consume/disable the product

Implementation

Future<void> removeProduct(String productID) async {
  await _removeProduct(productID);
}