(param0: com.google.firebase.database.DataSnapshot, param1: string)
| 227 | } |
| 228 | }, |
| 229 | onChildChanged(param0: com.google.firebase.database.DataSnapshot, param1: string) { |
| 230 | if (eventType === 'child_changed') { |
| 231 | callback?.(DataSnapshot.fromNative(param0), param1); |
| 232 | } |
| 233 | }, |
| 234 | onChildRemoved(param0: com.google.firebase.database.DataSnapshot) { |
| 235 | if (eventType === 'child_removed') { |
| 236 | callback?.(DataSnapshot.fromNative(param0), null); |
nothing calls this directly
no test coverage detected