wantResponse property

  1. @TagNumber(3)
bool get wantResponse

Not normally used, but for testing a sender can request that recipient responds in kind (i.e. if it received a position, it should unicast back it's position). Note: that if you set this on a broadcast you will receive many replies.

Implementation

@$pb.TagNumber(3)
$core.bool get wantResponse => $_getBF(2);
  1. @TagNumber(3)
set wantResponse (bool value)

Implementation

@$pb.TagNumber(3)
set wantResponse($core.bool value) => $_setBool(2, value);