value property
String
get
value
Returns the string value for the policy.
This is used internally by the SDK to communicate with the Calljmp API and should match the expected values on the backend.
Implementation
String get value {
switch (this) {
case UserAuthenticationPolicy.createNewOnly:
return "createNewOnly";
case UserAuthenticationPolicy.signInExistingOnly:
return "signInExistingOnly";
case UserAuthenticationPolicy.signInOrCreate:
return "signInOrCreate";
}
}