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