MCPcopy Create free account
hub / github.com/NativeScript/firebase / fromNative

Method fromNative

packages/firebase-ui/index.android.ts:504–511  ·  view source on GitHub ↗
(response: com.firebase.ui.auth.IdpResponse)

Source from the content-addressed store, hash-verified

502export class IdpResponse {
503 _native: com.firebase.ui.auth.IdpResponse;
504 static fromNative(response: com.firebase.ui.auth.IdpResponse) {
505 if (response instanceof com.firebase.ui.auth.IdpResponse) {
506 const ret = new IdpResponse();
507 ret._native = response;
508 return ret;
509 }
510 return null;
511 }
512
513 get native() {
514 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected