v7 method Null safety
v7() Generates a draft time-based version 7 UUID
By default it will generate a string based off current Unix epoch time in milliseconds, and will return a string.
The first argument is an options map that takes various configuration options detailed in the readme.
Implementation
String v7({Map<String, dynamic>? options}) {
return _uuidv7.generate(options: options);
}