ParticipantNameConfig constructor

const ParticipantNameConfig({
  1. String? name,
  2. bool isEditable = true,
})

If name is provided inside ParticipantNameConfig and is non-empty, then the isEditable flag controls whether the user can modify it in the pre-join screen.

If name is not provided or is empty, the name field will always be editable.

Implementation

const ParticipantNameConfig({
  this.name,
  this.isEditable = true,
});