()
| 18 | export class Crashlytics implements ICrashlytics { |
| 19 | _native: FIRCrashlytics; |
| 20 | constructor() { |
| 21 | if (defaultCrashlytics) { |
| 22 | return defaultCrashlytics; |
| 23 | } |
| 24 | defaultCrashlytics = this; |
| 25 | this._native = FIRCrashlytics.crashlytics(); |
| 26 | } |
| 27 | get native() { |
| 28 | return this._native; |
| 29 | } |
nothing calls this directly
no test coverage detected