We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deb9159 commit 119e33aCopy full SHA for 119e33a
lib/src/v7.dart
@@ -29,7 +29,7 @@ class UuidV7 {
29
// Extract the 48-bit timestamp from the first 6 bytes.
30
var timestampMillis = Int64(0);
31
for (var i = 0; i < 6; i++) {
32
- // Using BigInt due to how JS binary shift works,
+ // Using Int64 due to how JS binary shift works,
33
// it truncates the number to be uint32 which is not enough in this case.
34
timestampMillis = (timestampMillis << 8) | bytes[i];
35
}
0 commit comments