termsOfUse property
The terms of use of the item.
This property can contain HTML formatting.
Implementation
String get termsOfUse {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_OfflineMapItemInfo_getTermsOfUse(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set termsOfUse(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_OfflineMapItemInfo_setTermsOfUse(
_handle, coreValue.bytes, errorHandler);
});
}