clientPresentationDisplayed static method

Future<void> clientPresentationDisplayed(
  1. PLYPresentation presentation
)

Implementation

static Future<void> clientPresentationDisplayed(
    PLYPresentation presentation) async {
  return await _channel.invokeMethod(
      'clientPresentationDisplayed', <String, dynamic>{
    'presentation': transformPLYPresentationToMap(presentation)
  });
}