static Runtime fromValue(String value) { for (final item in Runtime.values) { if (item.wireValue == value) { return item; } } throw ArgumentError('Unknown Runtime value: $value'); }