startSession method
Future<Widget?>
startSession(
- String callToken,
- CallSettings callSettings,
- dynamic onSuccess(
- Widget callWidget
- dynamic onError(
- CometChatCallsException error
Implementation
Future<Widget?> startSession(
String callToken,
CallSettings callSettings,
Function(Widget callWidget) onSuccess,
Function(CometChatCallsException error) onError) {
throw UnimplementedError('startSession has not been implemented.');
}