s64be static method

BigIntLayout s64be({
  1. String? property,
})

BigIntLayout (big-endian signed int layouts) interpreted as Numbers.

Implementation

static BigIntLayout s64be({String? property}) =>
    BigIntLayout(8, property: property, sign: true, order: Endian.big);