FrameParser constructor

FrameParser({
  1. int stx = 0x02,
  2. int etx = 0x03,
  3. int dle = 0x10,
  4. bool includeTrailingControl = false,
})

Implementation

FrameParser({
  this.stx = 0x02,
  this.etx = 0x03,
  this.dle = 0x10,
  this.includeTrailingControl = false, // set true if you need LRC after ETX
});