CallStatsMapPublisher constructor

CallStatsMapPublisher({
  1. required bool isLive,
  2. CallStatsLocation? location,
  3. String? name,
  4. required PublishedTrackFlags publishedTracks,
  5. String? publisherType,
  6. required String userId,
  7. required String userSessionId,
})

Returns a new CallStatsMapPublisher instance.

Implementation

CallStatsMapPublisher({
  required this.isLive,
  this.location,
  this.name,
  required this.publishedTracks,
  this.publisherType,
  required this.userId,
  required this.userSessionId,
});