title property

String title

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();
}
void title=(String value)

Implementation

set title(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_OfflineMapItemInfo_setTitle(
        _handle, coreValue.bytes, errorHandler);
  });
}