show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. void onChanged(
    1. DeviceDetails
    )?,
  3. 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),
  );
}