deserializePayload abstract method

int deserializePayload(
  1. B builder,
  2. ByteData byteData,
  3. Endian endianness,
  4. int offset,
)

Call to deserialize only the payload, no header. The Builder is to allow passing the message to build into. returns a int with a serialized size

Implementation

int deserializePayload(
    B builder, ByteData byteData, Endian endianness, int offset);