setWindowAlphaValue static method

Future<void> setWindowAlphaValue(
  1. double value
)

Sets the window's alpha value.

This method is only available on macOS.

Implementation

static Future<void> setWindowAlphaValue(double value) async {
  WindowManipulator.setWindowAlphaValue(value);

  return;
}