u16be static method

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

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

Implementation

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