projectId property

String get projectId

The projectId of your Descope project.

You will most likely want to set this value in your application's initialization code, and in most cases you only need to set this to work with the Descope singleton.

Note: This is a shortcut for setting the Descope.config property.

Implementation

static String get projectId => _config.projectId;
set projectId (String projectId)

Implementation

static set projectId(String projectId) {
  _config = DescopeConfig(projectId: projectId);
}