bcsOffset static method

LEB128U32OffsetLayout bcsOffset({
  1. String? property,
})

Creates an offset layout using LEB128 encoding (used for compact integer representation).

This is commonly used to define offsets or lengths in BCS data structures.

Implementation

static LEB128U32OffsetLayout bcsOffset({String? property}) =>
    LEB128U32OffsetLayout(property: property);