withLocale method

AuthParamsBuilder withLocale(
  1. AuthLocale? locale
)

Specifies a language which will be used during auth process.

Implementation

AuthParamsBuilder withLocale(AuthLocale? locale) {
  _locale = locale;
  return this;
}