from static method

CallState from(
  1. int val
)

Returns state which matches specified int value

Implementation

static CallState from(int val) {
  return CallState.values.where((e) => e.id == val).first;
}