fromIdentifier static method
Implementation
static BlockchainUtilsSerializationIdentifier fromIdentifier(int? value) {
return values.firstWhere(
(e) => e.id == value,
orElse:
() =>
throw ItemNotFoundException(
name: "BlockchainUtilsSerializationIdentifier",
),
);
}