second property

Uint8List get second

Second segment view as a Uint8List.

Note: this allocates a typed-data view when non-empty.

Implementation

Uint8List get second {
  _ensureValid();
  final n = _len2;
  if (n == 0) return _empty;
  return Uint8List.sublistView(_buf2, _off2, _off2 + n);
}