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