s16be static method

IntegerLayout s16be({
  1. String? property,
})

IntegerLayout (big-endian signed int layouts) spanning two bytes.

Implementation

static IntegerLayout s16be({String? property}) =>
    IntegerLayout(2, property: property, sign: true, order: Endian.big);