fetchPresentation static method

Future<PLYPresentation?> fetchPresentation(
  1. String? placementId, {
  2. String? presentationId,
  3. String? contentId,
})

Implementation

static Future<PLYPresentation?> fetchPresentation(String? placementId,
    {String? presentationId, String? contentId}) async {
  final result =
      await _channel.invokeMethod('fetchPresentation', <String, dynamic>{
    'placementVendorId': placementId,
    'presentationVendorId': presentationId,
    'contentId': contentId
  });

  return transformToPLYPresentation(result);
}