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