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