ParticipantView constructor

const ParticipantView({
  1. Key? key,
  2. required Rx<OngoingCall> call,
  3. required Rx<Duration> duration,
  4. ParticipantsFlowStage initial = ParticipantsFlowStage.participants,
})

Implementation

const ParticipantView({
  super.key,
  required this.call,
  required this.duration,
  this.initial = ParticipantsFlowStage.participants,
});