getSystemBrightness static method

Future<double?> getSystemBrightness()

获取系统亮度

Implementation

static Future<double?> getSystemBrightness() async {
  return await methodChannel.invokeMethod<double>("getSystemBrightness");
}