bytes method
Returns a slice holding the unread portion of the buffer.
The slice is valid for use only until the next buffer modification (that
is, only until the next call to a method like read()
, write()
,
reset()
, or truncate()
). If options.copy
is false the slice aliases the buffer content at
least until the next buffer modification, so immediate changes to the
slice will affect the result of future reads.
@param options Defaults to { copy: true }
Implementation
_i9.Uint8List bytes([_i4.IInline8? options]) => _i3.callMethod(
this,
'bytes',
[options ?? _i6.undefined],
);