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 AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
$3.QuerySiteHeader? 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;
|
||||
}
|
||||
AppointmentByIdQuery._() : super();
|
||||
factory AppointmentByIdQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByIdQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByIdQuery._();
|
||||
|
||||
factory AppointmentByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QuerySiteHeader.create)
|
||||
@@ -47,10 +46,12 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByIdQuery copyWith(void Function(AppointmentByIdQuery) updates) => super.copyWith((message) => updates(message as AppointmentByIdQuery)) as AppointmentByIdQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByIdQuery create() => AppointmentByIdQuery._();
|
||||
@$core.override
|
||||
AppointmentByIdQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByIdQuery> createRepeated() => $pb.PbList<AppointmentByIdQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -60,7 +61,7 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QuerySiteHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QuerySiteHeader v) { $_setField(1, v); }
|
||||
set header($3.QuerySiteHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -77,18 +78,16 @@ class AppointmentByIdResult extends $pb.GeneratedMessage {
|
||||
$3.ResultHeader? header,
|
||||
$core.Iterable<$76.Appointment>? 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;
|
||||
}
|
||||
AppointmentByIdResult._() : super();
|
||||
factory AppointmentByIdResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByIdResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByIdResult._();
|
||||
|
||||
factory AppointmentByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdResult', 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 AppointmentByIdResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByIdResult copyWith(void Function(AppointmentByIdResult) updates) => super.copyWith((message) => updates(message as AppointmentByIdResult)) as AppointmentByIdResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByIdResult create() => AppointmentByIdResult._();
|
||||
@$core.override
|
||||
AppointmentByIdResult createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByIdResult> createRepeated() => $pb.PbList<AppointmentByIdResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -114,7 +115,7 @@ class AppointmentByIdResult 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 AppointmentByFilterQuery 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;
|
||||
}
|
||||
AppointmentByFilterQuery._() : super();
|
||||
factory AppointmentByFilterQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByFilterQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByFilterQuery._();
|
||||
|
||||
factory AppointmentByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QuerySiteHeader.create)
|
||||
@@ -165,10 +160,12 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByFilterQuery copyWith(void Function(AppointmentByFilterQuery) updates) => super.copyWith((message) => updates(message as AppointmentByFilterQuery)) as AppointmentByFilterQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByFilterQuery create() => AppointmentByFilterQuery._();
|
||||
@$core.override
|
||||
AppointmentByFilterQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByFilterQuery> createRepeated() => $pb.PbList<AppointmentByFilterQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -178,7 +175,7 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QuerySiteHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QuerySiteHeader v) { $_setField(1, v); }
|
||||
set header($3.QuerySiteHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -190,7 +187,7 @@ class AppointmentByFilterQuery 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)
|
||||
@@ -199,7 +196,7 @@ class AppointmentByFilterQuery 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)
|
||||
@@ -216,21 +213,17 @@ class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$76.Appointment>? 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;
|
||||
}
|
||||
AppointmentByFilterResult._() : super();
|
||||
factory AppointmentByFilterResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByFilterResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByFilterResult._();
|
||||
|
||||
factory AppointmentByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResultHeader.create)
|
||||
@@ -244,10 +237,12 @@ class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByFilterResult copyWith(void Function(AppointmentByFilterResult) updates) => super.copyWith((message) => updates(message as AppointmentByFilterResult)) as AppointmentByFilterResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByFilterResult create() => AppointmentByFilterResult._();
|
||||
@$core.override
|
||||
AppointmentByFilterResult createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByFilterResult> createRepeated() => $pb.PbList<AppointmentByFilterResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -257,7 +252,7 @@ class AppointmentByFilterResult 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)
|
||||
@@ -271,7 +266,7 @@ class AppointmentByFilterResult 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)
|
||||
@@ -284,21 +279,17 @@ class AppointmentByMatchQuery 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;
|
||||
}
|
||||
AppointmentByMatchQuery._() : super();
|
||||
factory AppointmentByMatchQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByMatchQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByMatchQuery._();
|
||||
|
||||
factory AppointmentByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.QuerySiteHeader.create)
|
||||
@@ -312,10 +303,12 @@ class AppointmentByMatchQuery extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByMatchQuery copyWith(void Function(AppointmentByMatchQuery) updates) => super.copyWith((message) => updates(message as AppointmentByMatchQuery)) as AppointmentByMatchQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByMatchQuery create() => AppointmentByMatchQuery._();
|
||||
@$core.override
|
||||
AppointmentByMatchQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByMatchQuery> createRepeated() => $pb.PbList<AppointmentByMatchQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -325,7 +318,7 @@ class AppointmentByMatchQuery extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(1)
|
||||
$3.QuerySiteHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.QuerySiteHeader v) { $_setField(1, v); }
|
||||
set header($3.QuerySiteHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
@@ -346,15 +339,15 @@ class AppointmentByMatchResult extends $pb.GeneratedMessage {
|
||||
factory AppointmentByMatchResult({
|
||||
$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;
|
||||
}
|
||||
AppointmentByMatchResult._() : super();
|
||||
factory AppointmentByMatchResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory AppointmentByMatchResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
AppointmentByMatchResult._();
|
||||
|
||||
factory AppointmentByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$3.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $3.MatchFieldResult.create)
|
||||
@@ -366,10 +359,12 @@ class AppointmentByMatchResult extends $pb.GeneratedMessage {
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentByMatchResult copyWith(void Function(AppointmentByMatchResult) updates) => super.copyWith((message) => updates(message as AppointmentByMatchResult)) as AppointmentByMatchResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentByMatchResult create() => AppointmentByMatchResult._();
|
||||
@$core.override
|
||||
AppointmentByMatchResult createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentByMatchResult> createRepeated() => $pb.PbList<AppointmentByMatchResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
@@ -381,5 +376,5 @@ class AppointmentByMatchResult 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