HostReq constructor
Implementation
factory HostReq({
$core.String? signedOtp,
$core.String? otp,
$core.String? address,
$core.String? f0,
}) {
final _result = create();
if (signedOtp != null) {
_result.signedOtp = signedOtp;
}
if (otp != null) {
_result.otp = otp;
}
if (address != null) {
_result.address = address;
}
if (f0 != null) {
_result.f0 = f0;
}
return _result;
}