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

Method fromNative

packages/firebase-dynamic-links/index.ios.ts:422–429  ·  view source on GitHub ↗
(link: FIRDynamicLink)

Source from the content-addressed store, hash-verified

420export class DynamicLink implements IDynamicLink {
421 _native: FIRDynamicLink;
422 static fromNative(link: FIRDynamicLink) {
423 if (link instanceof FIRDynamicLink) {
424 const result = new DynamicLink();
425 result._native = link;
426 return result;
427 }
428 return null;
429 }
430 get minimumAppVersion(): string {
431 return this.native.minimumAppVersion;
432 }

Callers 12

analyticsMethod · 0.45
androidMethod · 0.45
iosMethod · 0.45
itunesMethod · 0.45
navigationMethod · 0.45
socialMethod · 0.45
createLinkMethod · 0.45
createShortLinkMethod · 0.45
buildLinkMethod · 0.45
onLinkMethod · 0.45
resolveLinkMethod · 0.45
appMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected