purchaseWithPlanVendorId static method

Future<Map> purchaseWithPlanVendorId({
  1. required String vendorId,
  2. String? offerId,
  3. String? contentId,
})

Implementation

static Future<Map<dynamic, dynamic>> purchaseWithPlanVendorId(
    {required String vendorId, String? offerId, String? contentId}) async {
  final Map<dynamic, dynamic> product = await _channel.invokeMethod(
      'purchaseWithPlanVendorId', <String, dynamic>{
    'vendorId': vendorId,
    'offerId': offerId,
    'contentId': contentId
  });
  return product;
}