BitPart.v constructor

  1. @literal
const BitPart.v(
  1. int length, [
  2. String? name
])

A dynamic variable (segment) of a pattern of length bytes.

Optionally has a name (for debug purposes).

Implementation

@literal
const factory BitPart.v(int length, [String? name]) = _Segment;