(props: MapPolygonProps)
| 158 | private polygon: NativeProps['ref']; |
| 159 | |
| 160 | constructor(props: MapPolygonProps) { |
| 161 | super(props); |
| 162 | this.polygon = React.createRef<View>(); |
| 163 | } |
| 164 | |
| 165 | setNativeProps(props: Partial<MapPolygonProps>) { |
| 166 | this.polygon.current?.setNativeProps(props); |
nothing calls this directly
no outgoing calls
no test coverage detected