wireFormat property

WireFormat wireFormat

inherited

Implementation

WireFormat get wireFormat {
  if ((data.getUint8(kMessageFlagOffset) & kWireFormatV2FlagMask) != 0) {
    return WireFormat.v2;
  }
  return WireFormat.v1;
}