getHasStatistics method
Gets org.freedesktop.UPower.Device.HasStatistics
Implementation
Future<bool> getHasStatistics() async {
var value = await getProperty(
'org.freedesktop.UPower.Device',
'HasStatistics',
signature: DBusSignature('b'),
);
return value.asBoolean();
}