presentPresentationWithIdentifier method Null safety
Implementation
static Future<PresentPresentationResult> presentPresentationWithIdentifier(
String? presentationVendorId,
[String? contentId]) async {
final result = await _channel.invokeMethod(
'presentPresentationWithIdentifier', <String, dynamic>{
'presentationVendorId': presentationVendorId,
'contentId': contentId
});
return PresentPresentationResult(PLYPurchaseResult.values[result['result']],
transformToPLYPlan(result['plan']));
}