You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting these 2 analyzer warnings for my generated protobuf code:
info: The imported package 'fixnum' isn't a dependency of the importing package. (depend_on_referenced_packages at [google_auth_exporter] lib\data\models\google_auth.pb.dart:10)
info: The local variable '_result' starts with an underscore. (no_leading_underscores_for_local_identifiers at [google_auth_exporter] lib\data\models\google_auth.pb.dart:39)
info: The local variable '_result' starts with an underscore. (no_leading_underscores_for_local_identifiers at [google_auth_exporter] lib\data\models\google_auth.pb.dart:166)
This is my proto file:
// LICENSE: GNU General Public License v3.0 to Beem Development (https://github.com/beemdevelopment)// From https://github.com/beemdevelopment/Aegis/pull/406/files#diff-410b85c0f939a198f70af5fc855a21ed// Changes: modified package name.syntax="proto3";
packagegoogleauth;
messageMigrationPayload {
enumAlgorithm {
ALGO_INVALID=0;
ALGO_SHA1=1;
}
enumOtpType {
OTP_INVALID=0;
OTP_HOTP=1;
OTP_TOTP=2;
}
messageOtpParameters {
bytessecret=1;
stringname=2;
stringissuer=3;
Algorithmalgorithm=4;
int32digits=5;
OtpTypetype=6;
int64counter=7;
}
repeatedOtpParametersotp_parameters=1;
int32version=2;
int32batch_size=3;
int32batch_index=4;
int32batch_id=5;
}
The text was updated successfully, but these errors were encountered:
I am getting these 2 analyzer warnings for my generated protobuf code:
This is my proto file:
The text was updated successfully, but these errors were encountered: