* Set a single key:value extra entry that will be sent as extra data with the event.
(key: string, extra: Extra)
| 408 | * Set a single key:value extra entry that will be sent as extra data with the event. |
| 409 | */ |
| 410 | public setExtra(key: string, extra: Extra): this { |
| 411 | this._extra = { ...this._extra, [key]: extra }; |
| 412 | this._notifyScopeListeners(); |
| 413 | return this; |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Sets the fingerprint on the scope to send with the events. |