public static NativeActionCodeSettings ToNative(this ActionCodeSettings @this)
        {
            var settings = new NativeActionCodeSettings();

            settings.Url             = new NSUrl(@this.Url);
            settings.HandleCodeInApp = @this.HandleCodeInApp;
            settings.IOSBundleId     = @this.IOSBundleId;
            settings.SetAndroidPackageName(@this.AndroidPackageName, @this.AndroidInstallIfNotAvailable, @this.AndroidMinimumVersion);
            return(settings);
        }
Пример #2
0
 public static NativeActionCodeSettings ToNative(this ActionCodeSettings @this)
 {
     return(NativeActionCodeSettings
            .NewBuilder()
            .SetUrl(@this.Url)
            .SetHandleCodeInApp(@this.HandleCodeInApp)
            .SetIOSBundleId(@this.IOSBundleId)
            .SetAndroidPackageName(@this.AndroidPackageName, @this.AndroidInstallIfNotAvailable, @this.AndroidMinimumVersion)
            .Build());
 }