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