UuidValue.fromList constructor Null safety
fromList() creates a UuidValue from a List<int> of bytes.
Implementation
factory UuidValue.fromList(List<int> byteList, {int? offset}) {
return UuidValue(UuidParsing.unparse(byteList, offset: offset ?? 0));
}