public NativeAppLauncherClient(
     NativeAppLauncherClient.IAppLauncherServiceImpl appLauncherService,
     Func <ClientOptionsBuilder, ClientOptionsBuilder> setup = null
     )
     : this(new NativeAppLauncherClient.ServiceBinder(
                appLauncherService
                ), setup)
 {
 }
 public ServiceBinder(
     NativeAppLauncherClient.IAppLauncherServiceImpl appLauncherService
     )
 {
     _appLauncherServiceBinder = new NativeAppLauncherClient.AppLauncherServiceBinder(appLauncherService);
 }