Pemcipher.fromValue constructor
Pemcipher.fromValue(
- int value
Implementation
factory Pemcipher.fromValue(int value) {
final result = values[value];
if (result == null) {
throw StateError('Invalid value $value for bit flag enum Pemcipher');
}
return result;
}