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