getByValue static method
Implementation
static ContentDeliveryComposition? getByValue(num i) {
for (var value in ContentDeliveryComposition.values) {
if (value.value == i) {
return value;
}
}
return null;
}
static ContentDeliveryComposition? getByValue(num i) {
for (var value in ContentDeliveryComposition.values) {
if (value.value == i) {
return value;
}
}
return null;
}