AppAuthnProto_SmsVerifyTokenRequest constructor
AppAuthnProto_SmsVerifyTokenRequest({
- String? phone,
- String? token,
- String? pushToken,
- String? uid,
- AppAuthnProto_AppType? appType,
Implementation
factory AppAuthnProto_SmsVerifyTokenRequest({
$core.String? phone,
$core.String? token,
$core.String? pushToken,
$core.String? uid,
AppAuthnProto_AppType? appType,
}) {
final $result = create();
if (phone != null) {
$result.phone = phone;
}
if (token != null) {
$result.token = token;
}
if (pushToken != null) {
$result.pushToken = pushToken;
}
if (uid != null) {
$result.uid = uid;
}
if (appType != null) {
$result.appType = appType;
}
return $result;
}