show<T> static method
- BuildContext context, {
- required Rx<
OngoingCall> call, - required Rx<
Duration> duration, - ParticipantsFlowStage initial = ParticipantsFlowStage.participants,
Displays a ParticipantView wrapped in a ModalPopup.
Implementation
static Future<T?> show<T>(
BuildContext context, {
required Rx<OngoingCall> call,
required Rx<Duration> duration,
ParticipantsFlowStage initial = ParticipantsFlowStage.participants,
}) {
final style = Theme.of(context).style;
return ModalPopup.show(
context: context,
background: style.colors.background,
mobilePadding: const EdgeInsets.only(bottom: 16),
child: ParticipantView(call: call, duration: duration, initial: initial),
);
}