Participants constructor Null safety

Participants(
  1. {int? id,
  2. String? display,
  3. String? publisher,
  4. bool? talking}
)

Implementation

Participants({
  this.id,
  this.display,
  this.publisher,
  this.talking,
});