title property
The title for the offline map's item.
Implementation
String get title {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_OfflineMapItemInfo_getTitle(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set title(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_OfflineMapItemInfo_setTitle(
_handle, coreValue.bytes, errorHandler);
});
}