getPresentationView static method

PLYPresentationView? getPresentationView({
  1. PLYPresentation? presentation,
  2. String? presentationId,
  3. String? placementId,
  4. String? contentId,
  5. dynamic callback(
    1. PresentPresentationResult
    )?,
})

Implementation

static PLYPresentationView? getPresentationView({
  PLYPresentation? presentation,
  String? presentationId,
  String? placementId,
  String? contentId,
  Function(PresentPresentationResult)? callback,
}) {
  return PLYPresentationView(
      presentation: presentation,
      presentationId: presentationId,
      placementId: placementId,
      contentId: contentId,
      callback: callback);
}