IsoBuffer.wrap constructor
Implementation
factory IsoBuffer.wrap(Uint8List bytes, [int? offset, int? length]) {
final int start = offset ?? 0;
final int end = length == null ? bytes.length : start + length;
return IsoBuffer._(bytes, start, end);
}