mirror of
https://github.com/amigan/calls.git
synced 2025-01-31 13:32:37 -05:00
34 lines
1.1 KiB
Dart
34 lines
1.1 KiB
Dart
//
|
|
// Generated code. Do not modify.
|
|
// source: google/protobuf/struct.proto
|
|
//
|
|
// @dart = 2.12
|
|
|
|
// 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;
|
|
|
|
/// `NullValue` is a singleton enumeration to represent the null value for the
|
|
/// `Value` type union.
|
|
///
|
|
/// The JSON representation for `NullValue` is JSON `null`.
|
|
class NullValue extends $pb.ProtobufEnum {
|
|
static const NullValue NULL_VALUE = NullValue._(0, _omitEnumNames ? '' : 'NULL_VALUE');
|
|
|
|
static const $core.List<NullValue> values = <NullValue> [
|
|
NULL_VALUE,
|
|
];
|
|
|
|
static final $core.Map<$core.int, NullValue> _byValue = $pb.ProtobufEnum.initByValue(values);
|
|
static NullValue? valueOf($core.int value) => _byValue[value];
|
|
|
|
const NullValue._($core.int v, $core.String n) : super(v, n);
|
|
}
|
|
|
|
|
|
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|