Did not find frame. when using Agora video calling in flutter can't see frame of caller and from caller device can't see receivers frame

29 views Asked by At

In this video call can't see other person and getting error of did not find frame:

I was trying to add video calling feature and hosted token server in node js and ui is in dart .

Future<void> initialize({String? tokenUrl, String? channelName}) async {
    if (_client == null) {
      _client = AgoraClient(
        agoraConnectionData: AgoraConnectionData(
          appId: AgoraConfig.agoraAppId,
          channelName: channelName!,
          tokenUrl: tokenUrl,
        ),
      );
      await _client!.initialize();
    }
  }

this is my code for initialising agora io

0

There are 0 answers