TrackWithType constructor

const TrackWithType({
  1. required MediaStreamTrack track,
  2. StreamType? type,
  3. MediaStream? sourceStream,
})

Implementation

const TrackWithType({
  required this.track,
  this.type,
  this.sourceStream,
});