getByValue static method
Implementation
static LivenessProcessStatus? getByValue(int? i) {
  if (i == null) return null;
  return LivenessProcessStatus.values.firstWhere((x) => x.value == i);
}static LivenessProcessStatus? getByValue(int? i) {
  if (i == null) return null;
  return LivenessProcessStatus.values.firstWhere((x) => x.value == i);
}