fromName static method
Implementation
static JwtSupportedAlgorithm? fromName(String? alg) {
return values.firstWhereNullable((e) => e.name == alg);
}
static JwtSupportedAlgorithm? fromName(String? alg) {
return values.firstWhereNullable((e) => e.name == alg);
}