(param0: com.google.firebase.database.DataSnapshot, param1: string)
| 222 | handle = this.native.addChildEventListener( |
| 223 | new com.google.firebase.database.ChildEventListener({ |
| 224 | onChildAdded(param0: com.google.firebase.database.DataSnapshot, param1: string) { |
| 225 | if (eventType === 'child_added') { |
| 226 | callback?.(DataSnapshot.fromNative(param0), param1); |
| 227 | } |
| 228 | }, |
| 229 | onChildChanged(param0: com.google.firebase.database.DataSnapshot, param1: string) { |
| 230 | if (eventType === 'child_changed') { |
| 231 | callback?.(DataSnapshot.fromNative(param0), param1); |
nothing calls this directly
no test coverage detected