(props: MapHeatmapProps)
| 96 | private heatmap: NativeProps['ref']; |
| 97 | |
| 98 | constructor(props: MapHeatmapProps) { |
| 99 | super(props); |
| 100 | this.heatmap = React.createRef<View>(); |
| 101 | } |
| 102 | |
| 103 | setNativeProps(props: Partial<NativeProps>) { |
| 104 | this.heatmap.current?.setNativeProps(props); |
nothing calls this directly
no outgoing calls
no test coverage detected