auth0Domain property

String get auth0Domain

Retrieves the Auth0 Domain.

Implementation

static String get auth0Domain {
  if (instance._auth0Domain == null) {
    throw Exception('Domain is not set');
  }
  return instance._auth0Domain!;
}
set auth0Domain (String value)

Sets the Auth0 Domain.

Implementation

static set auth0Domain(String value) {
  if (value == instance._auth0Domain) {
    return;
  }
  instance._auth0Domain = value;
}