PeerConnectOption constructor

PeerConnectOption({
  1. String? label,
  2. dynamic metadata,
  3. bool? reliable,
  4. SerializationType? serialization,
  5. PeerConnectOption? payload,
  6. String? connectionId,
  7. MediaStream? stream,
  8. Function? sdpTransform,
  9. Map<String, dynamic>? constraints,
  10. bool? originator,
  11. Map<String, dynamic>? sdp,
})

Implementation

PeerConnectOption(
    {this.label,
    this.metadata,
    this.reliable,
    this.serialization,
    this.payload,
    this.connectionId,
    this.stream,
    this.sdpTransform,
    this.constraints,
    this.originator,
    this.sdp});