fromValue static method

KeywordOperandKeyword fromValue(
  1. String value
)

Implementation

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