fromValue static method

ContentBlueprintDraftStatus fromValue(
  1. String value
)

Implementation

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