value property
String
get
value
Implementation
String get value {
switch (this) {
case LogtoUserScope.profile:
return 'profile';
case LogtoUserScope.email:
return 'email';
case LogtoUserScope.phone:
return 'phone';
case LogtoUserScope.customData:
return 'custom_data';
case LogtoUserScope.identities:
return 'identities';
case LogtoUserScope.roles:
return 'roles';
case LogtoUserScope.organizations:
return 'urn:logto:scope:organizations';
case LogtoUserScope.organizationRoles:
return 'urn:logto:scope:organization_roles';
}
}