fromValue static method

ContentBlueprintDraftType fromValue(
  1. String value
)

Implementation

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