fromValue static method

SecurityLevel fromValue(
  1. String value
)

Implementation

static SecurityLevel fromValue(String value) =>
    SecurityLevel.values.firstWhere((e) => e.value == value);