buyProduct method

Future<void> buyProduct(
  1. NotificareProduct product
)

Implementation

Future<void> buyProduct(NotificareProduct product) async {
  await _methodChannel.invokeMethod('buyProduct', {'product': product});
}