getByValue static method

ContentDeliveryComposition? getByValue(
  1. num i
)

Implementation

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