| 123456789101112131415161718192021222324 | /////  Generated code. Do not modify.//  source: event.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_NAMEimport 'dart:core' as $core;import 'package:protobuf/protobuf.dart' as $pb;class NetworkEvent extends $pb.ProtobufEnum {  static const NetworkEvent UpdateNetworkType = NetworkEvent._(0, const $core.bool.fromEnvironment('protobuf.omit_enum_names') ? '' : 'UpdateNetworkType');  static const $core.List<NetworkEvent> values = <NetworkEvent> [    UpdateNetworkType,  ];  static final $core.Map<$core.int, NetworkEvent> _byValue = $pb.ProtobufEnum.initByValue(values);  static NetworkEvent? valueOf($core.int value) => _byValue[value];  const NetworkEvent._($core.int v, $core.String n) : super(v, n);}
 |