UuidValue.fromList constructor Null safety

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

Implementation

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