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();
}