setWindowAlphaValue static method

Future<void> setWindowAlphaValue(
  1. double value
)

Sets the window's alpha value.

Implementation

static Future<void> setWindowAlphaValue(double value) async {
  await _completer.future;
  await _windowManipulatorMethodChannel
      .invokeMethod('setWindowAlphaValue', <String, dynamic>{
    'value': value,
  });
}