toNative static method

OfflineCacheRegionNative toNative(
  1. OfflineCacheRegion obj
)

Implementation

static OfflineCacheRegionNative toNative(OfflineCacheRegion obj) {
  return _OfflineCacheRegionNativeInit(
      obj.id,
      to_native.toNativeString(obj.name),
      to_native.toNativeString(obj.country),
      mapkit_geometry_point.PointImpl.toNative(obj.center),
      mapkit_localized_value.LocalizedValueImpl.toNative(obj.size),
      to_native.toNativeAbsTimestamp(obj.releaseTime),
      to_native.toNativePtrUint32(obj.parentId));
}