Auth0Web constructor

Auth0Web(
  1. String domain,
  2. String clientId
)

Creates an instance of the Auth0Web client with the provided domain and clientId properties.

domain and clientId are both values that can be retrieved from the Settings page of your Auth0 application.

Implementation

Auth0Web(final String domain, final String clientId)
    : _account = Account(domain, clientId);