Add generated proto model
This commit is contained in:
parent
d67f7db834
commit
2637cd60a0
4 changed files with 380 additions and 0 deletions
201
lib/models/protos/googleauth.pb.dart
Normal file
201
lib/models/protos/googleauth.pb.dart
Normal file
|
@ -0,0 +1,201 @@
|
|||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: googleauth.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types
|
||||
// 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:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'googleauth.pbenum.dart';
|
||||
|
||||
export 'googleauth.pbenum.dart';
|
||||
|
||||
class MigrationPayload_OtpParameters extends $pb.GeneratedMessage {
|
||||
factory MigrationPayload_OtpParameters() => create();
|
||||
MigrationPayload_OtpParameters._() : super();
|
||||
factory MigrationPayload_OtpParameters.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory MigrationPayload_OtpParameters.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MigrationPayload.OtpParameters', package: const $pb.PackageName(_omitMessageNames ? '' : 'googleauth'), createEmptyInstance: create)
|
||||
..a<$core.List<$core.int>>(1, _omitFieldNames ? '' : 'secret', $pb.PbFieldType.OY)
|
||||
..aOS(2, _omitFieldNames ? '' : 'name')
|
||||
..aOS(3, _omitFieldNames ? '' : 'issuer')
|
||||
..e<MigrationPayload_Algorithm>(4, _omitFieldNames ? '' : 'algorithm', $pb.PbFieldType.OE, defaultOrMaker: MigrationPayload_Algorithm.ALGORITHM_UNSPECIFIED, valueOf: MigrationPayload_Algorithm.valueOf, enumValues: MigrationPayload_Algorithm.values)
|
||||
..e<MigrationPayload_DigitCount>(5, _omitFieldNames ? '' : 'digits', $pb.PbFieldType.OE, defaultOrMaker: MigrationPayload_DigitCount.DIGIT_COUNT_UNSPECIFIED, valueOf: MigrationPayload_DigitCount.valueOf, enumValues: MigrationPayload_DigitCount.values)
|
||||
..e<MigrationPayload_OtpType>(6, _omitFieldNames ? '' : 'type', $pb.PbFieldType.OE, defaultOrMaker: MigrationPayload_OtpType.OTP_TYPE_UNSPECIFIED, valueOf: MigrationPayload_OtpType.valueOf, enumValues: MigrationPayload_OtpType.values)
|
||||
..aInt64(7, _omitFieldNames ? '' : 'counter')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
MigrationPayload_OtpParameters clone() => MigrationPayload_OtpParameters()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
MigrationPayload_OtpParameters copyWith(void Function(MigrationPayload_OtpParameters) updates) => super.copyWith((message) => updates(message as MigrationPayload_OtpParameters)) as MigrationPayload_OtpParameters;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MigrationPayload_OtpParameters create() => MigrationPayload_OtpParameters._();
|
||||
MigrationPayload_OtpParameters createEmptyInstance() => create();
|
||||
static $pb.PbList<MigrationPayload_OtpParameters> createRepeated() => $pb.PbList<MigrationPayload_OtpParameters>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MigrationPayload_OtpParameters getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MigrationPayload_OtpParameters>(create);
|
||||
static MigrationPayload_OtpParameters? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<$core.int> get secret => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set secret($core.List<$core.int> v) { $_setBytes(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSecret() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSecret() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get name => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set name($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get issuer => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set issuer($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasIssuer() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearIssuer() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
MigrationPayload_Algorithm get algorithm => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set algorithm(MigrationPayload_Algorithm v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasAlgorithm() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearAlgorithm() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
MigrationPayload_DigitCount get digits => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set digits(MigrationPayload_DigitCount v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasDigits() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearDigits() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
MigrationPayload_OtpType get type => $_getN(5);
|
||||
@$pb.TagNumber(6)
|
||||
set type(MigrationPayload_OtpType v) { setField(6, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasType() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearType() => clearField(6);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$fixnum.Int64 get counter => $_getI64(6);
|
||||
@$pb.TagNumber(7)
|
||||
set counter($fixnum.Int64 v) { $_setInt64(6, v); }
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasCounter() => $_has(6);
|
||||
@$pb.TagNumber(7)
|
||||
void clearCounter() => clearField(7);
|
||||
}
|
||||
|
||||
class MigrationPayload extends $pb.GeneratedMessage {
|
||||
factory MigrationPayload() => create();
|
||||
MigrationPayload._() : super();
|
||||
factory MigrationPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory MigrationPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MigrationPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'googleauth'), createEmptyInstance: create)
|
||||
..pc<MigrationPayload_OtpParameters>(1, _omitFieldNames ? '' : 'otpParameters', $pb.PbFieldType.PM, subBuilder: MigrationPayload_OtpParameters.create)
|
||||
..a<$core.int>(2, _omitFieldNames ? '' : 'version', $pb.PbFieldType.O3)
|
||||
..a<$core.int>(3, _omitFieldNames ? '' : 'batchSize', $pb.PbFieldType.O3)
|
||||
..a<$core.int>(4, _omitFieldNames ? '' : 'batchIndex', $pb.PbFieldType.O3)
|
||||
..a<$core.int>(5, _omitFieldNames ? '' : 'batchId', $pb.PbFieldType.O3)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
MigrationPayload clone() => MigrationPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
MigrationPayload copyWith(void Function(MigrationPayload) updates) => super.copyWith((message) => updates(message as MigrationPayload)) as MigrationPayload;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MigrationPayload create() => MigrationPayload._();
|
||||
MigrationPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<MigrationPayload> createRepeated() => $pb.PbList<MigrationPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MigrationPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MigrationPayload>(create);
|
||||
static MigrationPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<MigrationPayload_OtpParameters> get otpParameters => $_getList(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.int get version => $_getIZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set version($core.int v) { $_setSignedInt32(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasVersion() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearVersion() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.int get batchSize => $_getIZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set batchSize($core.int v) { $_setSignedInt32(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasBatchSize() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearBatchSize() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.int get batchIndex => $_getIZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set batchIndex($core.int v) { $_setSignedInt32(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasBatchIndex() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearBatchIndex() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.int get batchId => $_getIZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set batchId($core.int v) { $_setSignedInt32(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasBatchId() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearBatchId() => clearField(5);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
72
lib/models/protos/googleauth.pbenum.dart
Normal file
72
lib/models/protos/googleauth.pbenum.dart
Normal file
|
@ -0,0 +1,72 @@
|
|||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: googleauth.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types
|
||||
// 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;
|
||||
|
||||
class MigrationPayload_Algorithm extends $pb.ProtobufEnum {
|
||||
static const MigrationPayload_Algorithm ALGORITHM_UNSPECIFIED = MigrationPayload_Algorithm._(0, _omitEnumNames ? '' : 'ALGORITHM_UNSPECIFIED');
|
||||
static const MigrationPayload_Algorithm ALGORITHM_SHA1 = MigrationPayload_Algorithm._(1, _omitEnumNames ? '' : 'ALGORITHM_SHA1');
|
||||
static const MigrationPayload_Algorithm ALGORITHM_SHA256 = MigrationPayload_Algorithm._(2, _omitEnumNames ? '' : 'ALGORITHM_SHA256');
|
||||
static const MigrationPayload_Algorithm ALGORITHM_SHA512 = MigrationPayload_Algorithm._(3, _omitEnumNames ? '' : 'ALGORITHM_SHA512');
|
||||
static const MigrationPayload_Algorithm ALGORITHM_MD5 = MigrationPayload_Algorithm._(4, _omitEnumNames ? '' : 'ALGORITHM_MD5');
|
||||
|
||||
static const $core.List<MigrationPayload_Algorithm> values = <MigrationPayload_Algorithm> [
|
||||
ALGORITHM_UNSPECIFIED,
|
||||
ALGORITHM_SHA1,
|
||||
ALGORITHM_SHA256,
|
||||
ALGORITHM_SHA512,
|
||||
ALGORITHM_MD5,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, MigrationPayload_Algorithm> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static MigrationPayload_Algorithm? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const MigrationPayload_Algorithm._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class MigrationPayload_DigitCount extends $pb.ProtobufEnum {
|
||||
static const MigrationPayload_DigitCount DIGIT_COUNT_UNSPECIFIED = MigrationPayload_DigitCount._(0, _omitEnumNames ? '' : 'DIGIT_COUNT_UNSPECIFIED');
|
||||
static const MigrationPayload_DigitCount DIGIT_COUNT_SIX = MigrationPayload_DigitCount._(1, _omitEnumNames ? '' : 'DIGIT_COUNT_SIX');
|
||||
static const MigrationPayload_DigitCount DIGIT_COUNT_EIGHT = MigrationPayload_DigitCount._(2, _omitEnumNames ? '' : 'DIGIT_COUNT_EIGHT');
|
||||
|
||||
static const $core.List<MigrationPayload_DigitCount> values = <MigrationPayload_DigitCount> [
|
||||
DIGIT_COUNT_UNSPECIFIED,
|
||||
DIGIT_COUNT_SIX,
|
||||
DIGIT_COUNT_EIGHT,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, MigrationPayload_DigitCount> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static MigrationPayload_DigitCount? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const MigrationPayload_DigitCount._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class MigrationPayload_OtpType extends $pb.ProtobufEnum {
|
||||
static const MigrationPayload_OtpType OTP_TYPE_UNSPECIFIED = MigrationPayload_OtpType._(0, _omitEnumNames ? '' : 'OTP_TYPE_UNSPECIFIED');
|
||||
static const MigrationPayload_OtpType OTP_TYPE_HOTP = MigrationPayload_OtpType._(1, _omitEnumNames ? '' : 'OTP_TYPE_HOTP');
|
||||
static const MigrationPayload_OtpType OTP_TYPE_TOTP = MigrationPayload_OtpType._(2, _omitEnumNames ? '' : 'OTP_TYPE_TOTP');
|
||||
|
||||
static const $core.List<MigrationPayload_OtpType> values = <MigrationPayload_OtpType> [
|
||||
OTP_TYPE_UNSPECIFIED,
|
||||
OTP_TYPE_HOTP,
|
||||
OTP_TYPE_TOTP,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, MigrationPayload_OtpType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static MigrationPayload_OtpType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const MigrationPayload_OtpType._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
93
lib/models/protos/googleauth.pbjson.dart
Normal file
93
lib/models/protos/googleauth.pbjson.dart
Normal file
|
@ -0,0 +1,93 @@
|
|||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: googleauth.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types
|
||||
// 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:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use migrationPayloadDescriptor instead')
|
||||
const MigrationPayload$json = {
|
||||
'1': 'MigrationPayload',
|
||||
'2': [
|
||||
{'1': 'otp_parameters', '3': 1, '4': 3, '5': 11, '6': '.googleauth.MigrationPayload.OtpParameters', '10': 'otpParameters'},
|
||||
{'1': 'version', '3': 2, '4': 1, '5': 5, '10': 'version'},
|
||||
{'1': 'batch_size', '3': 3, '4': 1, '5': 5, '10': 'batchSize'},
|
||||
{'1': 'batch_index', '3': 4, '4': 1, '5': 5, '10': 'batchIndex'},
|
||||
{'1': 'batch_id', '3': 5, '4': 1, '5': 5, '10': 'batchId'},
|
||||
],
|
||||
'3': [MigrationPayload_OtpParameters$json],
|
||||
'4': [MigrationPayload_Algorithm$json, MigrationPayload_DigitCount$json, MigrationPayload_OtpType$json],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use migrationPayloadDescriptor instead')
|
||||
const MigrationPayload_OtpParameters$json = {
|
||||
'1': 'OtpParameters',
|
||||
'2': [
|
||||
{'1': 'secret', '3': 1, '4': 1, '5': 12, '10': 'secret'},
|
||||
{'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
|
||||
{'1': 'issuer', '3': 3, '4': 1, '5': 9, '10': 'issuer'},
|
||||
{'1': 'algorithm', '3': 4, '4': 1, '5': 14, '6': '.googleauth.MigrationPayload.Algorithm', '10': 'algorithm'},
|
||||
{'1': 'digits', '3': 5, '4': 1, '5': 14, '6': '.googleauth.MigrationPayload.DigitCount', '10': 'digits'},
|
||||
{'1': 'type', '3': 6, '4': 1, '5': 14, '6': '.googleauth.MigrationPayload.OtpType', '10': 'type'},
|
||||
{'1': 'counter', '3': 7, '4': 1, '5': 3, '10': 'counter'},
|
||||
],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use migrationPayloadDescriptor instead')
|
||||
const MigrationPayload_Algorithm$json = {
|
||||
'1': 'Algorithm',
|
||||
'2': [
|
||||
{'1': 'ALGORITHM_UNSPECIFIED', '2': 0},
|
||||
{'1': 'ALGORITHM_SHA1', '2': 1},
|
||||
{'1': 'ALGORITHM_SHA256', '2': 2},
|
||||
{'1': 'ALGORITHM_SHA512', '2': 3},
|
||||
{'1': 'ALGORITHM_MD5', '2': 4},
|
||||
],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use migrationPayloadDescriptor instead')
|
||||
const MigrationPayload_DigitCount$json = {
|
||||
'1': 'DigitCount',
|
||||
'2': [
|
||||
{'1': 'DIGIT_COUNT_UNSPECIFIED', '2': 0},
|
||||
{'1': 'DIGIT_COUNT_SIX', '2': 1},
|
||||
{'1': 'DIGIT_COUNT_EIGHT', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use migrationPayloadDescriptor instead')
|
||||
const MigrationPayload_OtpType$json = {
|
||||
'1': 'OtpType',
|
||||
'2': [
|
||||
{'1': 'OTP_TYPE_UNSPECIFIED', '2': 0},
|
||||
{'1': 'OTP_TYPE_HOTP', '2': 1},
|
||||
{'1': 'OTP_TYPE_TOTP', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `MigrationPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List migrationPayloadDescriptor = $convert.base64Decode(
|
||||
'ChBNaWdyYXRpb25QYXlsb2FkElEKDm90cF9wYXJhbWV0ZXJzGAEgAygLMiouZ29vZ2xlYXV0aC'
|
||||
'5NaWdyYXRpb25QYXlsb2FkLk90cFBhcmFtZXRlcnNSDW90cFBhcmFtZXRlcnMSGAoHdmVyc2lv'
|
||||
'bhgCIAEoBVIHdmVyc2lvbhIdCgpiYXRjaF9zaXplGAMgASgFUgliYXRjaFNpemUSHwoLYmF0Y2'
|
||||
'hfaW5kZXgYBCABKAVSCmJhdGNoSW5kZXgSGQoIYmF0Y2hfaWQYBSABKAVSB2JhdGNoSWQargIK'
|
||||
'DU90cFBhcmFtZXRlcnMSFgoGc2VjcmV0GAEgASgMUgZzZWNyZXQSEgoEbmFtZRgCIAEoCVIEbm'
|
||||
'FtZRIWCgZpc3N1ZXIYAyABKAlSBmlzc3VlchJECglhbGdvcml0aG0YBCABKA4yJi5nb29nbGVh'
|
||||
'dXRoLk1pZ3JhdGlvblBheWxvYWQuQWxnb3JpdGhtUglhbGdvcml0aG0SPwoGZGlnaXRzGAUgAS'
|
||||
'gOMicuZ29vZ2xlYXV0aC5NaWdyYXRpb25QYXlsb2FkLkRpZ2l0Q291bnRSBmRpZ2l0cxI4CgR0'
|
||||
'eXBlGAYgASgOMiQuZ29vZ2xlYXV0aC5NaWdyYXRpb25QYXlsb2FkLk90cFR5cGVSBHR5cGUSGA'
|
||||
'oHY291bnRlchgHIAEoA1IHY291bnRlciJ5CglBbGdvcml0aG0SGQoVQUxHT1JJVEhNX1VOU1BF'
|
||||
'Q0lGSUVEEAASEgoOQUxHT1JJVEhNX1NIQTEQARIUChBBTEdPUklUSE1fU0hBMjU2EAISFAoQQU'
|
||||
'xHT1JJVEhNX1NIQTUxMhADEhEKDUFMR09SSVRITV9NRDUQBCJVCgpEaWdpdENvdW50EhsKF0RJ'
|
||||
'R0lUX0NPVU5UX1VOU1BFQ0lGSUVEEAASEwoPRElHSVRfQ09VTlRfU0lYEAESFQoRRElHSVRfQ0'
|
||||
'9VTlRfRUlHSFQQAiJJCgdPdHBUeXBlEhgKFE9UUF9UWVBFX1VOU1BFQ0lGSUVEEAASEQoNT1RQ'
|
||||
'X1RZUEVfSE9UUBABEhEKDU9UUF9UWVBFX1RPVFAQAg==');
|
||||
|
14
lib/models/protos/googleauth.pbserver.dart
Normal file
14
lib/models/protos/googleauth.pbserver.dart
Normal file
|
@ -0,0 +1,14 @@
|
|||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: googleauth.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
|
||||
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
|
||||
|
||||
export 'googleauth.pb.dart';
|
||||
|
Loading…
Add table
Reference in a new issue