clientPresentationClosed static method

Future<void> clientPresentationClosed(
  1. PLYPresentation presentation
)

Implementation

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