Blancduman / mediasoup-client-flutter

Flutter version of the mediasoup-client library.
MIT License
105 stars 56 forks source link

createSendTransportFromMap not connecting #88

Closed dineshnaikb closed 8 months ago

dineshnaikb commented 8 months ago
 late Transport producerTransport;
      producerTransport = device.createSendTransportFromMap(
        params["params"],
        producerCallback: () {
          print("consumer callback called, ");
        },
        dataProducerCallback: () {
          print("data consumer callback called, ");
        },
);

 print(producerTransport.connectionState); /// away new, any specfic in this issue
 print(producerTransport.closed);
 mediasoup-client:Device createSendTransport()
I/flutter (12183): mediasoup-client:Transport constructor() [id:eb2cfc06-d09f-4291-be0a-04810fba5b10, direction:send]
I/flutter (12183): mediasoup-client:Unified plan handler run()
I/flutter (12183): mediasoup-client:Transport restartIce()
I/flutter (12183): mediasoup-client:Unified plan handler restartIce()
I/flutter (12183): mediasoup-client:RemoteSdp updateIceParameters() [iceParameters:Instance of 'IceParameters']
I/flutter (12183): Instance of 'Transport'
I/flutter (12183): new
I/flutter (12183): false
D/MediaConstraintsUtils(12183): mandatory constraints are not a map

@Blancduman