show<T> static method
- BuildContext context,
- Rx<
OngoingCall> call
Displays a ScreenShareView wrapped in a ModalPopup.
Implementation
static Future<MediaDisplayDetails?> show<T>(
BuildContext context,
Rx<OngoingCall> call,
) {
return ModalPopup.show<MediaDisplayDetails?>(
context: context,
child: ScreenShareView(call),
);
}