view.pbenum.dart 1011 B

1234567891011121314151617181920212223242526
  1. ///
  2. // Generated code. Do not modify.
  3. // source: view.proto
  4. //
  5. // @dart = 2.12
  6. // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
  7. // ignore_for_file: UNDEFINED_SHOWN_NAME
  8. import 'dart:core' as $core;
  9. import 'package:protobuf/protobuf.dart' as $pb;
  10. class ViewType extends $pb.ProtobufEnum {
  11. static const ViewType Blank = ViewType._(0, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'Blank');
  12. static const ViewType Doc = ViewType._(1, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'Doc');
  13. static const $core.List<ViewType> values = <ViewType> [
  14. Blank,
  15. Doc,
  16. ];
  17. static final $core.Map<$core.int, ViewType> _byValue = $pb.ProtobufEnum.initByValue(values);
  18. static ViewType? valueOf($core.int value) => _byValue[value];
  19. const ViewType._($core.int v, $core.String n) : super(v, n);
  20. }