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