u32be static method

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

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

Implementation

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