fromString static method

CredentialState fromString(
  1. String state
)

Implementation

static CredentialState fromString(String state) {
  switch (state.toLowerCase()) {
    case "active":
      return CredentialState.ACTIVE;
    case "revoked":
      return CredentialState.REVOKED;
    default:
      throw Exception("Cannot initialize CredentialState from invalid String value $state");
  }
}