countryCode property
Country code.
Determines addresses from which the country should be returned.
Implementation
String get countryCode {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeParameters_getCountryCode(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set countryCode(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_GeocodeParameters_setCountryCode(
_handle,
coreValue.bytes,
errorHandler,
);
});
}