RelayReq constructor
Implementation
factory RelayReq({
$core.String? address,
$core.bool? noreply,
}) {
final _result = create();
if (address != null) {
_result.address = address;
}
if (noreply != null) {
_result.noreply = noreply;
}
return _result;
}