getLuminosity method
Gets org.freedesktop.UPower.Device.Luminosity
Implementation
Future<double> getLuminosity() async {
var value = await getProperty(
'org.freedesktop.UPower.Device',
'Luminosity',
signature: DBusSignature('d'),
);
return value.asDouble();
}