123456789101112131415161718192021222324252627282930 |
- ///
- // Generated code. Do not modify.
- // source: observable.proto
- //
- // @dart = 2.12
- // 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
- // ignore_for_file: UNDEFINED_SHOWN_NAME
- import 'dart:core' as $core;
- import 'package:protobuf/protobuf.dart' as $pb;
- class UserObservable extends $pb.ProtobufEnum {
- static const UserObservable Unknown = UserObservable._(0, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'Unknown');
- static const UserObservable UserAuthChanged = UserObservable._(1, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'UserAuthChanged');
- static const UserObservable UserProfileUpdated = UserObservable._(2, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'UserProfileUpdated');
- static const UserObservable UserUnauthorized = UserObservable._(3, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'UserUnauthorized');
- static const $core.List<UserObservable> values = <UserObservable> [
- Unknown,
- UserAuthChanged,
- UserProfileUpdated,
- UserUnauthorized,
- ];
- static final $core.Map<$core.int, UserObservable> _byValue = $pb.ProtobufEnum.initByValue(values);
- static UserObservable? valueOf($core.int value) => _byValue[value];
- const UserObservable._($core.int v, $core.String n) : super(v, n);
- }
|