outputLanguageCode property
Output language code.
Determines the language of candidate labels which should be returned.
Implementation
String get outputLanguageCode {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeParameters_getOutputLanguageCode(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set outputLanguageCode(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeocodeParameters_setOutputLanguageCode(
_handle, coreValue.bytes, errorHandler);
});
}