v6obj method Null safety
v6obj() Generates a draft time-based version 6 UUID
By default it will generate a string based off current Gregorian Epoch time in milliseconds, and will return it as a UuidValue object.
The first argument is an options map that takes various configuration options detailed in the readme.
https://datatracker.ietf.org/doc/html/draft-peabody-dispatch-new-uuid-format#section-4.3
Implementation
UuidValue v6obj({Map<String, dynamic>? options}) {
return UuidValue(v6(options: options));
}