AppAuthnProto_VerifySecretRequest constructor
AppAuthnProto_VerifySecretRequest({})
Implementation
factory AppAuthnProto_VerifySecretRequest({
$core.String? phone,
$core.String? secret,
$core.String? pushToken,
$core.String? uid,
$27.Timestamp? timestamp,
AppAuthnProto_AppType? appType,
}) {
final $result = create();
if (phone != null) {
$result.phone = phone;
}
if (secret != null) {
$result.secret = secret;
}
if (pushToken != null) {
$result.pushToken = pushToken;
}
if (uid != null) {
$result.uid = uid;
}
if (timestamp != null) {
$result.timestamp = timestamp;
}
if (appType != null) {
$result.appType = appType;
}
return $result;
}