Connection constructor

Connection({
  1. String? userId,
  2. String? connectionType,
  3. String? name,
  4. bool? audioEnabled,
  5. bool? videoEnabled,
  6. MediaStream? stream,
})

Implementation

Connection({
  this.userId,
  this.connectionType,
  this.name,
  this.audioEnabled,
  this.videoEnabled,
  MediaStream? stream,
}) : super(localStream: stream);