public CustomAuthViewController(CustomAuthModel model)
 {
     _model = model;
 }
 public LoginWithAppleWebViewDelegate(CustomAuthModel model, Action close)
 {
     _modelRef = new WeakReference <CustomAuthModel>(model);
     _closeRef = new WeakReference <Action>(close);
 }
 public CustomWebViewSignInWithAppleService()
 {
     _model = new CustomAuthModel();
 }