FlexifunctionCommand.parse constructor
FlexifunctionCommand.parse(
- ByteData data_
Implementation
factory FlexifunctionCommand.parse(ByteData data_) {
if (data_.lengthInBytes < FlexifunctionCommand.mavlinkEncodedLength) {
var len = FlexifunctionCommand.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 commandType = data_.getUint8(2);
return FlexifunctionCommand(
targetSystem: targetSystem,
targetComponent: targetComponent,
commandType: commandType);
}