setTrustedDaemon function
Implementation
void setTrustedDaemon(bool arg) {
final errorBoxPointer = monero_flutter.buildErrorBoxPointer();
monero_flutter.bindings.set_trusted_daemon(arg, errorBoxPointer);
final errorInfo = monero_flutter.extractErrorInfo(errorBoxPointer);
if (0 != errorInfo.code) {
throw Exception(errorInfo.getErrorMessage());
}
}