description property
The description text of the offline map.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_OfflineMapItemInfo_getDescription(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set description(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_OfflineMapItemInfo_setDescription(
_handle, coreValue.bytes, errorHandler);
});
}