UuidValue.fromByteList constructor
fromByteList() creates a UuidValue from a Uint8List of bytes.
Implementation
factory UuidValue.fromByteList(Uint8List byteList, {int? offset}) {
return UuidValue.raw(UuidParsing.unparse(byteList, offset: offset ?? 0));
}