createAuth0Client function

Future<Auth0> createAuth0Client(
  1. Auth0ClientOptions options
)

Creates the Auth0 client.

Implementation

Future<Auth0> createAuth0Client(Auth0ClientOptions options) {
  return promiseToFuture(_createAuth0Client(options))
      .then((auth0js) => Auth0._(auth0js));
}