show<T> static method

Future<MediaDisplayDetails?> show<T>(
  1. BuildContext context,
  2. 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),
  );
}