StreamingState constructor

StreamingState({
  1. StreamingStateEnum state = StreamingStateEnum.idle,
  2. int bitrate = 0,
  3. int cacheUsed = 0,
  4. String serviceName = '',
  5. String serviceUrl = '',
  6. int minBitrate = 0,
  7. int maxBitrate = 0,
})

Implementation

StreamingState({
  this.state = StreamingStateEnum.idle,
  this.bitrate = 0,
  this.cacheUsed = 0,
  this.serviceName = '',
  this.serviceUrl = '',
  this.minBitrate = 0,
  this.maxBitrate = 0,
});