fromNative static method

BalloonGeometry fromNative(
  1. BalloonGeometryNative native
)

Implementation

static BalloonGeometry fromNative(BalloonGeometryNative native) {
  return BalloonGeometry(
    navigation_balloons_balloon_anchor.BalloonAnchorImpl.fromNative(
        native.anchor),
    width: native.width,
    height: native.height,
    to_platform.toPlatformPoint(native.imageAnchor),
    mapkit_map_rect.RectImpl.fromNative(native.contentRect),
    mapkit_map_rect.RectImpl.fromNative(native.balloonRect),
  );
}