show<T> static method
- BuildContext context, {
- void onChanged()?,
- String? mic,
Displays a MicrophoneSwitchView wrapped in a ModalPopup.
Implementation
static Future<T?> show<T>(
BuildContext context, {
void Function(DeviceDetails)? onChanged,
String? mic,
}) {
return ModalPopup.show(
context: context,
child: MicrophoneSwitchView(onChanged: onChanged, mic: mic),
);
}