getByValue static method

ContentDeliveryMode? getByValue(
  1. num i
)

Implementation

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