fromNative static method

VisibleRegion fromNative(
  1. VisibleRegionNative native
)

Implementation

static VisibleRegion fromNative(VisibleRegionNative native) {
  return VisibleRegion(
      mapkit_geometry_point.PointImpl.fromNative(native.topLeft),
      mapkit_geometry_point.PointImpl.fromNative(native.topRight),
      mapkit_geometry_point.PointImpl.fromNative(native.bottomLeft),
      mapkit_geometry_point.PointImpl.fromNative(native.bottomRight));
}