ResendContactPhoneCodeRequest constructor
ResendContactPhoneCodeRequest({
- String? userId,
- SendPhoneVerificationCode? sendCode,
- ReturnPhoneVerificationCode? returnCode,
Implementation
factory ResendContactPhoneCodeRequest({
$core.String? userId,
$5.SendPhoneVerificationCode? sendCode,
$5.ReturnPhoneVerificationCode? returnCode,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (sendCode != null) {
$result.sendCode = sendCode;
}
if (returnCode != null) {
$result.returnCode = returnCode;
}
return $result;
}