setWindowAlphaValue static method
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,
});
}