show<T> static method
- BuildContext context
Displays a CallWindowSwitchView wrapped in a ModalPopup.
Implementation
static Future<T?> show<T>(BuildContext context) {
return ModalPopup.show(
context: context,
child: const CallWindowSwitchView(),
);
}