fromWire static method

Capability fromWire(
  1. String value
)

Implementation

static Capability fromWire(String value) => values.firstWhere(
  (e) => e.wireValue == value,
  orElse: () => throw ValidationException('Unknown capability: $value'),
);