switchToVideoCall method
- dynamic onSuccess(
- String success
- dynamic onError( )
override
Implementation
@override
void switchToVideoCall(onSuccess, onError) async {
try{
final result = await methodChannel.invokeMethod<String>('switchToVideoCall');
onSuccess(result ?? "success");
} on PlatformException catch (platformException) {
onError(CometChatCallsException(platformException.code, platformException.message, platformException.details));
} catch (e) {
onError(CometChatCallsException(CometChatCallsConstants.codeError, e.toString(), e.toString()));
}
}