position property

  1. @TagNumber(3)
PositionLite get position

This position data. Note: before 1.2.14 we would also store the last time we've heard from this node in position.time, that is no longer true. Position.time now indicates the last time we received a POSITION from that node.

Implementation

@$pb.TagNumber(3)
PositionLite get position => $_getN(2);
  1. @TagNumber(3)
set position (PositionLite value)

Implementation

@$pb.TagNumber(3)
set position(PositionLite value) => $_setField(3, value);