overrideMacOSBrightness static method
Overrides the brightness setting of the window.
Implementation
static Future<void> overrideMacOSBrightness({
required bool dark,
}) async {
await _completer.future;
await _windowManipulatorMethodChannel.invokeMethod(
'overrideMacOSBrightness',
{
'dark': dark,
},
);
}