getConfigurationBoolean method
Get boolean from config
key
Config key
recursive
Search recursively
Implementation
bool getConfigurationBoolean(String key, {bool recursive = true}) {
Pointer<Utf8> data = key.toNativeUtf8();
Pointer<Pointer<Void>> exception = WebFrameworkException.createException();
GetConfigurationBooleanDart function = handler.instance
.lookupFunction<GetConfigurationBooleanC, GetConfigurationBooleanDart>(
"getConfigurationBoolean");
bool result = function.call(implementation, data, recursive, exception);
malloc.free(data);
WebFrameworkException.checkException(exception, handler);
return result;
}