StreamingMountPointInfo constructor Null safety

StreamingMountPointInfo(
  1. {int? id,
  2. String? name,
  3. String? description,
  4. String? metadata,
  5. String? secret,
  6. String? pin,
  7. bool? isPrivate,
  8. int? viewers,
  9. bool? enabled,
  10. String? type,
  11. List<Media>? media}
)

Implementation

StreamingMountPointInfo({
    this.id,
    this.name,
    this.description,
    this.metadata,
    this.secret,
    this.pin,
    this.isPrivate,
    this.viewers,
    this.enabled,
    this.type,
    this.media,});