fromValue static method

ContentUpdateStatus fromValue(
  1. String value
)

Implementation

static ContentUpdateStatus fromValue(String value) =>
    values.firstWhere((e) => e.value == value,
        orElse: () => ContentUpdateStatus._(value));