RallyFetchPoint.parse constructor

RallyFetchPoint.parse(
  1. ByteData data_
)

Implementation

factory RallyFetchPoint.parse(ByteData data_) {
  if (data_.lengthInBytes < RallyFetchPoint.mavlinkEncodedLength) {
    var len = RallyFetchPoint.mavlinkEncodedLength - data_.lengthInBytes;
    var d = data_.buffer.asUint8List() + List<int>.filled(len, 0);
    data_ = Uint8List.fromList(d).buffer.asByteData();
  }
  var targetSystem = data_.getUint8(0);
  var targetComponent = data_.getUint8(1);
  var idx = data_.getUint8(2);

  return RallyFetchPoint(
      targetSystem: targetSystem, targetComponent: targetComponent, idx: idx);
}