generateUuid method
void
generateUuid()
Generate a new UUID v4
Generates a random UUID using the v4 algorithm. Overwrites any existing UUID.
Implementation
void generateUuid() {
uuid = _uuidGenerator.v4();
}
Generate a new UUID v4
Generates a random UUID using the v4 algorithm. Overwrites any existing UUID.
void generateUuid() {
uuid = _uuidGenerator.v4();
}