(attributes: { [key: string]: string | number | boolean })
| 82 | this.native.setCustomValueForKey(value, name); |
| 83 | } |
| 84 | setAttributes(attributes: { [key: string]: string | number | boolean }) { |
| 85 | Object.keys(attributes).forEach((key) => { |
| 86 | this.native.setCustomValueForKey(attributes[key], key); |
| 87 | }); |
| 88 | } |
| 89 | setCrashlyticsCollectionEnabled(enabled: boolean) { |
| 90 | this.native.setCrashlyticsCollectionEnabled(enabled); |
| 91 | } |