public GooglePlayApi(GooglePlayApiOption googlePlayApiOption, HttpMessageHandler handler) : base(handler)
 {
     _option = googlePlayApiOption ?? throw new ArgumentNullException(nameof(googlePlayApiOption));
 }
 public GooglePlayApi(GooglePlayApiOption googlePlayApiOption)
     : this(googlePlayApiOption, new HttpClientHandler())
 {
 }