withTheme method

AuthParamsBuilder withTheme(
  1. AuthTheme? theme
)

Specifies a theme which will be used during auth process.

Implementation

AuthParamsBuilder withTheme(AuthTheme? theme) {
  _theme = theme;
  return this;
}