Publishers constructor Null safety

Publishers(
  1. {int? id,
  2. String? display,
  3. String? audioCodec,
  4. String? videoCodec,
  5. List<Streams>? streams,
  6. bool? talking}
)

Implementation

Publishers({
  this.id,
  this.display,
  this.audioCodec,
  this.videoCodec,
  this.streams,
  this.talking,
});