withUseOAuthProviderIfPossible method

AuthParamsBuilder withUseOAuthProviderIfPossible(
  1. bool useOAuthProviderIfPossible
)

Specifies whether to use auth providers (other apps from VK ecosystem) to get auth credentials from.

Works only on Android.

Implementation

AuthParamsBuilder withUseOAuthProviderIfPossible(
    bool useOAuthProviderIfPossible) {
  _useOAuthProviderIfPossible = useOAuthProviderIfPossible;
  return this;
}