UuidValue.fromByteList constructor

UuidValue.fromByteList(
  1. Uint8List byteList, {
  2. int? offset,
})

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));
}