accessInformation property

String accessInformation

The access information for the offline map.

Implementation

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

Implementation

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