RelayReq constructor

RelayReq({
  1. String? address,
  2. bool? noreply,
})

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;
}