You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -5,9 +5,10 @@
|
||||
// @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
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
@@ -23,18 +24,16 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
$3.QueryProjectHeader? header,
|
||||
$core.Iterable<$3.EntityID>? iDs,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iDs != null) {
|
||||
$result.iDs.addAll(iDs);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
return result;
|
||||
}
|
||||
HandlingunitByIdQuery._() : super();
|
||||
factory HandlingunitByIdQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByIdQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByIdQuery._();
|
||||
|
||||
factory HandlingunitByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QueryProjectHeader.create)
|
||||
@@ -47,10 +46,12 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByIdQuery copyWith(void Function(HandlingunitByIdQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByIdQuery)) as HandlingunitByIdQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByIdQuery create() => HandlingunitByIdQuery._();
|
||||
@$core.override
|
||||
HandlingunitByIdQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByIdQuery> createRepeated() => $pb.PbList<HandlingunitByIdQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -60,7 +61,7 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QueryProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.QueryProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -77,18 +78,16 @@ class HandlingunitByIdResult extends $pb.GeneratedMessage {
|
||||
$3.ResultHeader? header,
|
||||
$core.Iterable<$92.Handlingunit>? objects,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (objects != null) {
|
||||
$result.objects.addAll(objects);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (objects != null) result.objects.addAll(objects);
|
||||
return result;
|
||||
}
|
||||
HandlingunitByIdResult._() : super();
|
||||
factory HandlingunitByIdResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByIdResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByIdResult._();
|
||||
|
||||
factory HandlingunitByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByIdResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResultHeader.create)
|
||||
@@ -101,10 +100,12 @@ class HandlingunitByIdResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByIdResult copyWith(void Function(HandlingunitByIdResult) updates) => super.copyWith((message) => updates(message as HandlingunitByIdResult)) as HandlingunitByIdResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByIdResult create() => HandlingunitByIdResult._();
|
||||
@$core.override
|
||||
HandlingunitByIdResult createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByIdResult> createRepeated() => $pb.PbList<HandlingunitByIdResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -114,7 +115,7 @@ class HandlingunitByIdResult extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.ResultHeader v) { $_setField(1, v); }
|
||||
set header($3.ResultHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -133,24 +134,18 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$3.BlockFilter>? blockFilters,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (limitFilter != null) {
|
||||
$result.limitFilter = limitFilter;
|
||||
}
|
||||
if (queryContext != null) {
|
||||
$result.queryContext = queryContext;
|
||||
}
|
||||
if (blockFilters != null) {
|
||||
$result.blockFilters.addAll(blockFilters);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (limitFilter != null) result.limitFilter = limitFilter;
|
||||
if (queryContext != null) result.queryContext = queryContext;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
return result;
|
||||
}
|
||||
HandlingunitByFilterQuery._() : super();
|
||||
factory HandlingunitByFilterQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByFilterQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByFilterQuery._();
|
||||
|
||||
factory HandlingunitByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QueryProjectHeader.create)
|
||||
@@ -165,10 +160,12 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByFilterQuery copyWith(void Function(HandlingunitByFilterQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByFilterQuery)) as HandlingunitByFilterQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByFilterQuery create() => HandlingunitByFilterQuery._();
|
||||
@$core.override
|
||||
HandlingunitByFilterQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByFilterQuery> createRepeated() => $pb.PbList<HandlingunitByFilterQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -178,7 +175,7 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QueryProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.QueryProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -189,7 +186,7 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get limitFilter => $_getSZ(1);
|
||||
@$pb.TagNumber(4)
|
||||
set limitFilter($core.String v) { $_setString(1, v); }
|
||||
set limitFilter($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLimitFilter() => $_has(1);
|
||||
@$pb.TagNumber(4)
|
||||
@@ -198,7 +195,7 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(5)
|
||||
set queryContext($core.String v) { $_setString(2, v); }
|
||||
set queryContext($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(5)
|
||||
@@ -215,21 +212,17 @@ class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$92.Handlingunit>? objects,
|
||||
$core.String? queryContext,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (objects != null) {
|
||||
$result.objects.addAll(objects);
|
||||
}
|
||||
if (queryContext != null) {
|
||||
$result.queryContext = queryContext;
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (objects != null) result.objects.addAll(objects);
|
||||
if (queryContext != null) result.queryContext = queryContext;
|
||||
return result;
|
||||
}
|
||||
HandlingunitByFilterResult._() : super();
|
||||
factory HandlingunitByFilterResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByFilterResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByFilterResult._();
|
||||
|
||||
factory HandlingunitByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResultHeader.create)
|
||||
@@ -243,10 +236,12 @@ class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByFilterResult copyWith(void Function(HandlingunitByFilterResult) updates) => super.copyWith((message) => updates(message as HandlingunitByFilterResult)) as HandlingunitByFilterResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByFilterResult create() => HandlingunitByFilterResult._();
|
||||
@$core.override
|
||||
HandlingunitByFilterResult createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByFilterResult> createRepeated() => $pb.PbList<HandlingunitByFilterResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -256,7 +251,7 @@ class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.ResultHeader v) { $_setField(1, v); }
|
||||
set header($3.ResultHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -270,7 +265,7 @@ class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set queryContext($core.String v) { $_setString(2, v); }
|
||||
set queryContext($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
@@ -283,21 +278,17 @@ class HandlingunitByMatchQuery extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$3.BlockFilter>? blockFilters,
|
||||
$core.Iterable<$3.MatchField>? matchFields,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (blockFilters != null) {
|
||||
$result.blockFilters.addAll(blockFilters);
|
||||
}
|
||||
if (matchFields != null) {
|
||||
$result.matchFields.addAll(matchFields);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
if (matchFields != null) result.matchFields.addAll(matchFields);
|
||||
return result;
|
||||
}
|
||||
HandlingunitByMatchQuery._() : super();
|
||||
factory HandlingunitByMatchQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByMatchQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByMatchQuery._();
|
||||
|
||||
factory HandlingunitByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QueryProjectHeader.create)
|
||||
@@ -311,10 +302,12 @@ class HandlingunitByMatchQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByMatchQuery copyWith(void Function(HandlingunitByMatchQuery) updates) => super.copyWith((message) => updates(message as HandlingunitByMatchQuery)) as HandlingunitByMatchQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByMatchQuery create() => HandlingunitByMatchQuery._();
|
||||
@$core.override
|
||||
HandlingunitByMatchQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByMatchQuery> createRepeated() => $pb.PbList<HandlingunitByMatchQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -324,7 +317,7 @@ class HandlingunitByMatchQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QueryProjectHeader v) { $_setField(1, v); }
|
||||
set header($3.QueryProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -345,15 +338,15 @@ class HandlingunitByMatchResult extends $pb.GeneratedMessage {
|
||||
factory HandlingunitByMatchResult({
|
||||
$core.Iterable<$3.MatchFieldResult>? matchResults,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (matchResults != null) {
|
||||
$result.matchResults.addAll(matchResults);
|
||||
}
|
||||
return $result;
|
||||
final result = create();
|
||||
if (matchResults != null) result.matchResults.addAll(matchResults);
|
||||
return result;
|
||||
}
|
||||
HandlingunitByMatchResult._() : super();
|
||||
factory HandlingunitByMatchResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory HandlingunitByMatchResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
HandlingunitByMatchResult._();
|
||||
|
||||
factory HandlingunitByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$3.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $3.MatchFieldResult.create)
|
||||
@@ -365,10 +358,12 @@ class HandlingunitByMatchResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitByMatchResult copyWith(void Function(HandlingunitByMatchResult) updates) => super.copyWith((message) => updates(message as HandlingunitByMatchResult)) as HandlingunitByMatchResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitByMatchResult create() => HandlingunitByMatchResult._();
|
||||
@$core.override
|
||||
HandlingunitByMatchResult createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitByMatchResult> createRepeated() => $pb.PbList<HandlingunitByMatchResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -380,5 +375,5 @@ class HandlingunitByMatchResult extends $pb.GeneratedMessage {
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
Reference in New Issue
Block a user