getByValue static method

TrackingState getByValue(
  1. num i
)

Implementation

static TrackingState getByValue(num i){
  return TrackingState.values.firstWhere((x) => x.value == i);
}