| // |
| // Generated code. Do not modify. |
| // source: plugin.proto |
| // |
| // @dart = 3.3 |
| |
| // ignore_for_file: annotate_overrides, camel_case_types, comment_references |
| // ignore_for_file: constant_identifier_names, library_prefixes |
| // ignore_for_file: non_constant_identifier_names, prefer_final_fields |
| // ignore_for_file: unnecessary_import, unnecessary_this, unused_import |
| |
| import 'dart:core' as $core; |
| |
| import 'package:protobuf/protobuf.dart' as $pb; |
| |
| /// Sync with code_generator.h. |
| class CodeGeneratorResponse_Feature extends $pb.ProtobufEnum { |
| static const CodeGeneratorResponse_Feature FEATURE_NONE = |
| CodeGeneratorResponse_Feature._(0, _omitEnumNames ? '' : 'FEATURE_NONE'); |
| static const CodeGeneratorResponse_Feature FEATURE_PROTO3_OPTIONAL = |
| CodeGeneratorResponse_Feature._( |
| 1, _omitEnumNames ? '' : 'FEATURE_PROTO3_OPTIONAL'); |
| |
| static const $core.List<CodeGeneratorResponse_Feature> values = |
| <CodeGeneratorResponse_Feature>[ |
| FEATURE_NONE, |
| FEATURE_PROTO3_OPTIONAL, |
| ]; |
| |
| static final $core.Map<$core.int, CodeGeneratorResponse_Feature> _byValue = |
| $pb.ProtobufEnum.initByValue(values); |
| static CodeGeneratorResponse_Feature? valueOf($core.int value) => |
| _byValue[value]; |
| |
| const CodeGeneratorResponse_Feature._(super.v, super.n); |
| } |
| |
| const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names'); |