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