joinPresentation method

Future<Widget?> joinPresentation(
  1. String callToken,
  2. PresentationSettings presentationSettings,
  3. dynamic onSuccess(
    1. Widget callWidget
    ),
  4. dynamic onError(
    1. CometChatCallsException error
    ),
)

Implementation

Future<Widget?> joinPresentation(
    String callToken,
    PresentationSettings presentationSettings,
    Function(Widget callWidget) onSuccess,
    Function(CometChatCallsException error) onError) {
  throw UnimplementedError('startSession has not been implemented.');
}