fromValue static method

ServiceProtocol fromValue(
  1. int? value
)

Implementation

static ServiceProtocol fromValue(int? value) {
  return values.firstWhere(
    (e) => e.id == value,
    orElse: () => throw ItemNotFoundException(),
  );
}