v8obj method Null safety
v8obj() Generates a draft time-based version 8 UUID
By default it will generate a string based off current Unix 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.
Implementation
UuidValue v8obj({Map<String, dynamic>? options}) {
return UuidValue(v8(options: options));
}