getByValue static method

FollowValue getByValue(
  1. int value
)

Implementation

static FollowValue getByValue(int value) {
  return FollowValue.values.firstWhere((x) => x.rawValue == value);
}