AgoraUser constructor Null safety

AgoraUser(
  1. {required int uid,
  2. bool remote = true,
  3. bool muted = false,
  4. bool videoDisabled = false,
  5. ClientRole clientRole = ClientRole.Broadcaster}
)

Implementation

AgoraUser({
  required this.uid,
  this.remote = true,
  this.muted = false,
  this.videoDisabled = false,
  this.clientRole = ClientRole.Broadcaster,
});