bytesTo<R> method
R
bytesTo<R>(])
override
Calls the function output
with the internal bytes of this instance.
Implementation
@override
R bytesTo<R>(R Function(Uint8List bytes, int offset, int length) output,
[int offset = 0, int? length]) {
length ??= _length - offset;
var bs = toBytes(offset, length);
return output(bs, 0, length);
}