UuidValue.fromList constructor
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));
}
fromList() creates a UuidValue from a List<int> of bytes.
factory UuidValue.fromList(List<int> byteList, {int? offset}) {
return UuidValue.raw(UuidParsing.unparse(byteList, offset: offset ?? 0));
}