from static method

Status from(
  1. Object? value
)

Looks up a value by wire int, Dart enum name, or original proto name (whichever value happens to be). Throws if not found.

Implementation

static Status from(Object? value) {
  return Status.values.firstWhere(
    (e) => e.value == value || e.name == value || e.protoName == value,
    orElse: () => throw ItemNotFoundException(name: "Status", value: value),
  );
}