UuidValue.fromList constructor

UuidValue.fromList(
  1. List<int> byteList,
  2. {int? offset}
)

fromList() creates a UuidValue from a List<int> of bytes.

Implementation

factory UuidValue.fromList(List<int> byteList, {int? offset}) {
  return UuidValue.raw(UuidParsing.unparse(byteList, offset: offset ?? 0));
}