snippet property

String snippet

The snippet text of the offline map.

Implementation

String get snippet {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_OfflineMapItemInfo_getSnippet(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void snippet=(String value)

Implementation

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