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