v5 method Null safety
v5() Generates a namespace & name-based version 5 UUID
By default it will generate a string based on a provided uuid namespace and name, and will return a string.
The first argument is an options map that takes various configuration options detailed in the readme.
Implementation
String v5(String? namespace, String? name, {Map<String, dynamic>? options}) {
return _uuidv5.generate(namespace, name, options: options);
}