v5buffer method Null safety
v5buffer() GGenerates a namespace & name-based version 5 UUID
By default it will generate a string based on a provided uuid namespace and
place the result into the provided buffer
. The buffer
will also be returned.
Optionally an offset
can be provided with a start position in the buffer.
The first argument is an options map that takes various configuration options detailed in the readme.
Implementation
List<int> v5buffer(
String? namespace,
String? name,
List<int>? buffer, {
Map<String, dynamic>? options,
int offset = 0,
}) {
return UuidParsing.parse(v5(namespace, name, options: options), buffer: buffer, offset: offset);
}